1
Answer

Read registry?

Photo of John

John

16y
3k
1
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)