Can you refer me to some good reference how I can read write to registry via .net resources ?
I checked the site and couldn't find any good information.
Check out the Registry class in the BCL
Registry
Example:
using(var key = Registry.CurrentUser.OpenSubKey(@"SoftwareMyProduct")) { var value = key.GetValue("SomeValueKey"); .. }
1.4m articles
1.4m replys
5 comments
57.0k users