摘要: 这里提供了一个简便方法:(该方法为Win7下的,XP下的见最后一行)第一步:新建一个txt文件第二步:在文件中添加如下内容:netsh interface ip set address name="本地连接" source=static addr=10.60.37.99 mask=255.255.255.0gateway=10.60.37.254netsh interface ip set dns "本地连接" source=static addr=202.120.190.208 4个红色的部分需要我们根据需要修改:10.60.37.99 是IP地址25 阅读全文
posted @ 2013-11-05 10:34 DR19 阅读(602) 评论(0) 推荐(0) 编辑
摘要: 1 // 判断是否为邮编2 public static bool IsPostalcode(string strPostcode)3 {4 if (strPostcode == null) return false;5 else return Regex.IsMatch(strPostcode, @"^\d{6}$");6 } 1 /// 2 /// 判断邮箱是否有效 3 /// 4 /// 邮箱地址 5 /// 6... 阅读全文
posted @ 2013-11-05 10:32 DR19 阅读(232) 评论(0) 推荐(0) 编辑
摘要: 1.Two monitors2.Visual Studio3.TestDriven.NET4.JetBrains ReSharper5.VS样式https://studiostyl.es/ 阅读全文
posted @ 2013-11-05 10:32 DR19 阅读(195) 评论(0) 推荐(0) 编辑