U
unemotionalhumanoid
I am using the RegistryKey class to get access to the windows registry, I
can get a value from the registry by doing:
RegistryKey registryKey1 =
Registry.LocalMachine.OpenSubKey("Software\\test");
registryKey1.GetValue("test2")
How do I find out what type "test2" is? i.e. string, dword, binary value
etc.
Thank you
can get a value from the registry by doing:
RegistryKey registryKey1 =
Registry.LocalMachine.OpenSubKey("Software\\test");
registryKey1.GetValue("test2")
How do I find out what type "test2" is? i.e. string, dword, binary value
etc.
Thank you