Wednesday 26 February 2014

Create a Key in Registry


Microsoft.Win32.RegistryKey key;
key = Microsoft.Win32.Registry.CurrentUser.CreateSubKey("SocialEmailerPro");
key.SetValue("Key", "IsabellaIsTheNewKey");
key.GetValue("Key");
key.Close();