vote up 7 vote down star
2

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

flag

67% accept rate
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-MSFT Sep 27 at 1:13

5 Answers

vote up 13 vote down check

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|flag
vote up 8 vote down

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|flag
vote up 4 vote down

You can try Nini

link|flag
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
1  
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
vote up 1 vote down

You can use NIni lib.

link|flag
vote up -2 vote down

Not working in Windows Vista

link|flag
What is not working? – zendar Jul 31 at 12:47

Your Answer

Get an OpenID
or

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