C# 레지스트리 읽기/쓰기
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Microsoft.Win32; namespace RegistryTest { class Program { static void Main(string[] args) { string subkey = "Software\\RegistryTest"; RegistryKey key = Registry.LocalMachine.OpenSubKey(subkey,true); if (key == null) { key = Registry.LocalMachine.CreateSubKey(subkey); } // set..
프로그래밍
2017. 3. 23. 13:15
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday