Is it possible to read the registry from VS C# 2010 Express? I don't seem to have all of the necessities in the autocomplete selections:
RegistryKey key = Registry.LocalMachine;
I have "using Microsoft.Win32;" imported and what happens is it doesn't seem like the object is created. I've seen examples such as:
RegistryKey key = Registry.LocalMachine;
key = key.OpenSubKey(xxxxxxxx);
I don't get .OpenSubKey options at all. Am I missing something? I'm VERY new to C#, so it would be understandable if I were doing something wrong :)
Thanks!