操作注册表类
摘要:
#region 注册表类 public class Reg { public static void SetSubKey(string key,string Value) { RegistryKey rkey = Registry.LocalMachine.OpenSubKey(@"SoftWare\xxx",true); rkey.SetValue(key,Value); rke... 阅读全文
posted @ 2007-02-09 14:33 3stones 阅读(273) 评论(0) 推荐(0) 编辑