C#讀取windows注冊表鍵值
需要添加Microsoft.Win32命名空間的引用
using Microsoft.Win32;
讀取注冊表代碼
RegistryKey masterKey = Registry.LocalMachine.CreateSubKey ("SOFTWARE\\Test\\Preferences"); if (masterKey == null) { Console.WriteLine ("Null Masterkey!"); } else { Console.WriteLine ("MyKey = {0}", masterKey.GetValue ("MyKey")); } masterKey.Close();
本文由用戶 MiltonGetz 自行上傳分享,僅供網友學習交流。所有權歸原作者,若您的權利被侵害,請聯系管理員。
轉載本站原創文章,請注明出處,并保留原始鏈接、圖片水印。
本站是一個以用戶分享為主的開源技術平臺,歡迎各類分享!