摘要: //Get Registry item value of key, item name=name public string GetValue(RegistryKey rootKey, string path, string itemName) { if (string.IsNullOrEmpty(itemName) || rootKey == null || string.IsNullOrEmpty(path)) return null; try { ... 阅读全文
posted @ 2014-02-13 09:08 quietwalk 阅读(314) 评论(0) 推荐(0) 编辑