To Retrieve Registry Key Values
this will useful To read values from registry
need to import this namespace
using Microsoft.Win32;
string regpath = "SOFTWARE\\License"; //it is my path
RegistryKey regKey = Registry.LocalMachine.OpenSubKey(regpath);
string regValue = (string)regKey.GetValue("licensevalue");
//licensevalue is my key name