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#.

link|improve this question

RemObjects has a Delphi Prism library called ShineOn that ships a similar INI file class. But you need to have Delphi Prism to compile it for .NET from source as there is not yet a compiled assembly available. code.remobjects.com/p/shineon – Lex Li Sep 27 '09 at 1:13
feedback

9 Answers

up vote 46 down vote accepted

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
http://jachman.wordpress.com/2006/09/11/how-to-access-ini-files-in-c-net/

link|improve this answer
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: WritePrivateProfileString and GetPrivateProfileString. You will need two namespaces: System.Runtime.InteropServices and System.Text.

Steps to use the Ini class

In your project namespace definition add

using INI;

Create a INIFile like this

INIFile ini = new INIFile("C:\\test.ini");

Use IniWriteValue to write a new value to a specific key in a section or use IniReadValue to read a value FROM a key in a specific Section.

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.

link|improve this answer
I want to read complete INI file. How to do the same instead of reading section,key – sukumar Mar 11 '10 at 10:36
Thanks for the MSDN Article! – cimnine Jul 18 '11 at 18:33
feedback

You can try Nini

link|improve this answer
1  
Is the website supposed to be blank, or did the Nini creator simply forget to test it with Firefox?!!!??? – David Arno Oct 20 '08 at 9:52
2  
Try sourceforge.net/projects/nini – Patman Oct 20 '08 at 9:58
@Patman, thanks for the link. – David Arno Oct 20 '08 at 10:05
Good one! Simple and elegant. Unmaintained though. – smmv Dec 5 '11 at 11:38
I noticed that this suggestion lacked examples. Here's how to read an INI file with Nini: gist.github.com/1880345 and here's how to write an INI file with Nini: gist.github.com/1880365 – Brent M Feb 22 at 1:13
feedback

http://code.google.com/p/ini-parser/

is better more simple solution.

link|improve this answer
feedback

You can use NIni lib.

link|improve this answer
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.

link|improve this answer
In case it's not obvious from looking at the top level of the library (it wasn't obvious to me!), the IniDcoument class et al are in ComLib.IO. – Tim Keating Apr 21 '10 at 15:50
feedback

I found this simple implementation:

http://bytes.com/topic/net/insights/797169-reading-parsing-ini-file-c

Works well for what I need.

link|improve this answer
A nice light-weight solution! – Jeff Roe Apr 15 '11 at 23:16
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.

Reading and Writing INI Files

link|improve this answer
feedback

Please check out Cinchoo framework. It provides a class to create, read INI files.

For a sample ini file below,

    [PRODUCT]
    VERSION=1.002 ;Version Comment
    COMPANY=NAG Groups LLC
    ADDRESS=10 River Road, \
            Orlando, \
            FL 100230.

One way of reading key-value as below

using (ChoIniDocument iniDocument = ChoIniDocument.Load(@"C:\Temp\TestIni1.ini"))
{
    Console.Writeline(iniDocument["PRODUCT"]["ADDRESS"]);
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.