1
Reply

Read registry?

John

John

May 3 2009 2:29 PM
2.6k
I use for reading registry following:
RegistryKey rk1 = Registry.CurrentUser.CreateSubKey("Software\\"Microsoft\Notepad");
string rk_read = rk1.GetValue("IfFaceName");
Console.WriteLine("The string: {0}",rk_read);
But in console i see only
The string:
and nothing else... String IfFaceName is in the registry on the location in code.

Answers (1)