Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Looking for C# registry class [closed]

Tags:

c#

registry

Looking for C# class which wraps calls to do the following:

read and write a key value read & write a key entry

enumerate the entries in a key. This is important. For example, need to list all entries in: HKEY_LOCAL_MACHINE\SOFTWARE\ODBC\ODBC.INI\ODBC Data Sources

(I scanned through some codeproject.com registry classes and they didn't enumerate)

like image 853
Abdu Avatar asked Nov 30 '22 07:11

Abdu


1 Answers

Microsoft.Win32.Registry

like image 119
Ryan Lundy Avatar answered Dec 07 '22 14:12

Ryan Lundy