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#.
feedback
|
|
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 | |||
|
feedback
|
|
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. | |||||
feedback
|
|
You can try Nini | |||||||||||||||
feedback
|
|
http://code.google.com/p/ini-parser/ is better more simple solution. | |||
|
feedback
|
|
There is an Ini Parser available in CommonLibrary.NET This has various very convenient overloads for getting sections/values and is very light weight. | |||
feedback
|
|
I found this simple implementation: http://bytes.com/topic/net/insights/797169-reading-parsing-ini-file-c Works well for what I need. | |||
|
feedback
|
|
Usually, when you create applications using C# and the .NET framework, you will not use INI files. It is more common to store settings in an XML-based configuration file or in the registry. However, if your software shares settings with a legacy application it may be easier to use its configuration file, rather than duplicating the information elsewhere. The .NET framework does not support the use of INI files directly. However, you can use Windows API functions with Platform Invocation Services (P/Invoke) to write to and read from the files. In this link we create a class that represents INI files and uses Windows API functions to manipulate them. Please go through the following link. | |||
|
feedback
|
|
Please check out Cinchoo framework. It provides a class to create, read INI files. For a sample ini file below,
One way of reading key-value as below
| ||||
|
feedback
|