Read registry key
CodeKeep C# Feed Novembre 11th, 2008
Description: Read registry key
Link: http://www.codekeep.net/snippets/c6a70259-d79e-4111-9e52-dc9092797d4e.aspx
RegistryKey Key = Registry.LocalMachine.OpenSubKey(@"SOFTWARE\...\...\", false);
if (Key == null)
{
// not found
}
else
{
String value = Key.GetValue("KeyName").ToString();
}






