摘要:
获得管理员权限,首先,新建议文本文件,复制以下代码,保存为.reg格式,然后导入注册表。 Windows Registry Editor Version 5.00 ;取得文件修改权限 [HKEY_CLASSES_ROOT\*\shell\runas] @="管理员权限" "Icon"="C:\\Wi 阅读全文
摘要:
转自:http://www.cnblogs.com/csharpx/archive/2010/05/27/1745122.html 阅读全文
摘要:
1 //分组 2 var ll= lst.GroupBy(x => new { x.Id, x.Name }).Select(x => new 3 { 4 Key = x.Key, 5 Id = x.First().Id, 6 Name = x.First().Na... 阅读全文
摘要:
C:\Windows\System32>xsd.exe c:/Createst.xsd -c C:\Windows\System32>xsd.exe c:/Creauest.xsd /c /Language:C# /outputdir:d:\ 生成的cs带命名空间:C:\Windows\System 阅读全文
摘要:
row_number()over(partition by Id,Code order by setTime desc) 阅读全文
摘要:
1.与Date.Parse()方法的区别:Date.Parse(object o)方法接受一个object类型的参数,当参数为空或转换失败时会抛出异常DateTime.TryParse方法不会抛出异常 2.用法介绍方法定义 : DateTime.TryParse(string strTime,out 阅读全文
摘要:
/// /// 从URL获取值(字符串) /// public static string GetValueFromUrl(string key) { string keyvalue = HttpContext.Current.Request.QueryString[key]; i... 阅读全文
摘要:
/// /// MD5 32位加密(大写) /// /// /// static string UserMd5(string str) { string cl = str; string pwd = ""; MD5 md5... 阅读全文
摘要:
static void Main(string[] args) { #region 定时器 TimerDemo td = new TimerDemo("TimerDemo", 1000); td.Enabled = true; td.TickEvent += TestHandler;... 阅读全文