티스토리 뷰

프로그래밍

C# 레지스트리 읽기/쓰기

두덕리온라인 2017. 3. 23. 13:15
728x90
반응형

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
            key.SetValue("fps", 59);


            // get
            int fps = (int)key.GetValue("fps");
            key.Close();

        }
    }
}

반응형
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday