Click here to Skip to main content
15,895,777 members
Articles / Programming Languages / C#

Read Registry using C#

8 Dec 2011CPOL 25.6K   1  
You can try the function below to read values from the Registry:myRegistry.Read("MY_KEY");where: input: the key name (string)output: the value of the key (string)using System;using Microsoft.Win32; public string Read(string KeyName){ // Opening the registry key ...
We're sorry, but the article you are trying to view was deleted at 11 Apr 2017.

Please go to the C# Table of Contents to view the list of available articles in this section.