C#, ロジック


レジストリアクセスは以下のように行います。

		
using Microsoft.Win32;
...

RegistryKey registryKey = 
	Registry.LocalMachine.OpenSubKey( @"SOFTWARE\DEVELOP", false );
string szValue = registryKey.GetValue( "VALUE1" ) as string;
		
	


inserted by FC2 system