摘要:
一、NUnit (用于编写单元测试)官方网站:http://www.nunit.org二、.NET Reflector (用于分析程序集,可以反编译)Reflector下载地址:http://www.aisto.com/roeder/dotnet三、Regulator (用于生成正则表达式)下载地址:http://sourceforge.net/projects/regulator/ 阅读全文
摘要:
string mystr = string.Empty; string mystr = ""; //定义空字符串,两种方法 if (mystr == "" && mystr.Length ==0 && mystr == string.Empty) { CommonClass.MsgBox("yes!"); } 运行弹出提示“yes!”定为空字符串的几种写法,按照性能从高到低的顺序是:s.Length == 0 优于 s == string.Empty 优于 s == "" 阅读全文