티스토리 뷰
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();
}
}
}
반응형
'프로그래밍' 카테고리의 다른 글
Java Singleton 문제 정답(DCL) (0) | 2017.03.27 |
---|---|
C# 람다(=>) 오퍼레이터 (0) | 2017.03.23 |
Java 서버 프로그램 nohup 백그라운드 실행 및 종료 (0) | 2017.02.07 |
Java 하위 폴더 모든 소스 컴파일 빌드 (0) | 2017.02.07 |
C++ stringstream 초기화 (0) | 2017.02.07 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday