Code:
using Microsoft.Win32;
...
RegistryKey myKey = myMainKey.CreateSubKey("MyKeyName");
...
RegistryKey myKey = myMainKey.OpenSubKey("MyKeyName");
...
String myKeyValue = (String) myMainKey.GetValue("MyKeyName");
...
myMainKey.SetValue("MyKeyName", "The Lord Of The DRINKS");
...
To je uglavnom ono sto ce ti najcesce trebati.