潇潇洒洒

 

2011年10月28日

部署svn的步骤

摘要: 1.服务器 VisualSVN 自带 apache2.客户端TortoiseSVN3.vs插件AnkhSvn 阅读全文

posted @ 2011-10-28 22:33 肖磊 阅读(164) 评论(0) 推荐(0) 编辑

2011年10月8日

当前代码的应用程序域

摘要: System.Threading.Thread.GetDomain() 阅读全文

posted @ 2011-10-08 23:48 肖磊 阅读(141) 评论(0) 推荐(0) 编辑

2011年2月14日

在sqlserver 中 得到一个数据库中的每张表所占用的空间

摘要: if object_id('tmp_xl') is not null drop table tmp_xlcreate table tmp_xl ([name] varchar(50),[rows] int,reserved varchar(50),data varchar(50),index_size varchar(50),unused varchar(50))insert into tmp_xl([name],[rows],reserved,data,index_size,unused) exec sp_msforeachTable @Command1="sp_s 阅读全文

posted @ 2011-02-14 19:19 肖磊 阅读(286) 评论(0) 推荐(0) 编辑

2011年2月11日

得到枚举的自定义描述信息

摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Reflection;namespace EnumAttributeTest{ class Program { static void Main(string[] args) { Console.WriteLine(GetEnumDescirbeString<TestEnum>(TestEnum.SecondType)); } ... 阅读全文

posted @ 2011-02-11 00:05 肖磊 阅读(207) 评论(0) 推荐(0) 编辑

导航