2013年7月26日
摘要: 1.输入uac进入个人账户管理控制 选择最低 重启2.以管理员身份进入cmd,执行脚本:bcdedit /set {current} nx AlwaysOff 重启 阅读全文
posted @ 2013-07-26 13:29 云帮主 阅读(337) 评论(0) 推荐(0)
摘要: /// /// 转义字符串中所有正则特殊字符 /// /// 传入字符串 /// string FilterString(string input) { input = input.Replace("\\", "\\\\");//先替换“\”,不然后面会因为替换出现其他的“\” Regex r = new Regex("[\\*\\.\\?\\+\\$\\^\\[\\]\\(\\)\\{\\}\\|\\/]"); MatchCollecti... 阅读全文
posted @ 2013-07-26 13:14 云帮主 阅读(878) 评论(0) 推荐(0)