Set registry key value
CodeKeep C# Feed Novembre 11th, 2008
Description: Set registry key value
Link: http://www.codekeep.net/snippets/4f24c71e-fcb3-4b02-a2b6-951c34dc652e.aspx
RegistryKey key = Registry.LocalMachine.OpenSubKey(@"SOFTWARE\...\...\",true);
key.SetValue("Name", newValue);






