Nelle applicazioni Windows può capitare di dover salvare o leggere delle informazioni contenute nel registro di sistema.Per poter accedere facilmente alla classe Registry aggiungere nelle dichiarazioni la stringa:
using Microsoft.Win32;
A questo punto per visualizzare un valore presente nel registro è sufficiente aggiungere sull'evento load di un windows form:RegistryKey OurKey = Registry.CurrentUser;OurKey = OurKey.OpenSubKey(@"Software\Microsoft\Windows\CurrentVersion\Internet Settings", tru
Leggi tutto il post...