Is there any class in .Net framework that can read/write standard ini files:
[Section]
<keyname>=<value>
...
Delphi have TIniFile component and I am looking if there is anything similar for C#.
|
2
|
|||
|
|
|
The creators of the .NET framework want you to use XML-based config files, rather than ini files. So no, there is no builtin mechanism for reading them. There are third party solutions available though. Take a look at: http://www.codeproject.com/KB/cs/cs_ini.aspx and |
||
|
|
|
|
This article on CodeProject "An INI file handling class using C#" should help. The author created a C# class "Ini" which exposes two functions from KERNEL32.dll. These functions are: Steps to use the Ini class In your project namespace definition add
Create a INIFile like this
Use Note: if you're beginning from scratch, you could read this MSDN article: How to: Add Application Configuration Files to C# Projects. It's a better way for configuring your application. |
|||
|
|
|
|
You can try Nini |
||||||||
|
|
|
Not working in Windows Vista |
||
|
|
|
You can use NIni lib. |
||
|
|