Reading/writing INI file in C# - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T08:19:08Zhttp://stackoverflow.com/feeds/question/217902http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/217902/reading-writing-ini-file-in-c8Reading/writing INI file in C# zendar2008-10-20T09:37:22Z2009-09-14T09:57:21Z
<p>Is there any class in .Net framework that can read/write standard ini files:</p>
<pre><code>[Section]
<keyname>=<value>
...
</code></pre>
<p>Delphi have TIniFile component and I am looking if there is anything similar for C#. </p>
http://stackoverflow.com/questions/217902/reading-writing-ini-file-in-c/217910#21791013Answer by David Arno for Reading/writing INI file in C# David Arno2008-10-20T09:42:20Z2008-10-20T09:42:20Z<p>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.</p>
<p>There are third party solutions available though. Take a look at:</p>
<p><a href="http://www.codeproject.com/KB/cs/cs_ini.aspx" rel="nofollow">http://www.codeproject.com/KB/cs/cs_ini.aspx</a> and<br />
<a href="http://jachman.wordpress.com/2006/09/11/how-to-access-ini-files-in-c-net/" rel="nofollow">http://jachman.wordpress.com/2006/09/11/how-to-access-ini-files-in-c-net/</a></p>
http://stackoverflow.com/questions/217902/reading-writing-ini-file-in-c/217913#2179139Answer by splattne for Reading/writing INI file in C# splattne2008-10-20T09:42:55Z2008-10-20T09:49:37Z<p>This article on CodeProject "<a href="http://www.codeproject.com/KB/cs/cs_ini.aspx" rel="nofollow">An INI file handling class using C#</a>" should help.</p>
<p>The author created a C# class "Ini" which exposes two functions from KERNEL32.dll. These functions are: <code>WritePrivateProfileString</code> and <code>GetPrivateProfileString</code>. You will need two namespaces: <code>System.Runtime.InteropServices</code> and <code>System.Text</code>.</p>
<p><strong>Steps to use the Ini class</strong></p>
<p>In your project namespace definition add </p>
<pre><code>using INI;
</code></pre>
<p>Create a INIFile like this</p>
<pre><code>INIFile ini = new INIFile("C:\\test.ini");
</code></pre>
<p>Use <code>IniWriteValue</code> to write a new value to a specific key in a section or use <code>IniReadValue</code> to read a value FROM a key in a specific Section.</p>
<p><em>Note: if you're beginning from scratch, you could read this <strong>MSDN article</strong>: <a href="http://msdn.microsoft.com/en-us/library/ms184658(VS.80).aspx" rel="nofollow">How to: Add Application Configuration Files to C# Projects</a>. It's a better way for configuring your application.</em></p>
http://stackoverflow.com/questions/217902/reading-writing-ini-file-in-c/217917#2179174Answer by Muxa for Reading/writing INI file in C# Muxa2008-10-20T09:44:46Z2008-10-20T09:44:46Z<p>You can try <a href="http://nini.sourceforge.net/" rel="nofollow">Nini</a></p>
http://stackoverflow.com/questions/217902/reading-writing-ini-file-in-c/1210465#1210465-2Answer by Boyet for Reading/writing INI file in C# Boyet2009-07-31T02:53:47Z2009-07-31T02:53:47Z<p>Not working in Windows Vista</p>
http://stackoverflow.com/questions/217902/reading-writing-ini-file-in-c/1420635#14206351Answer by Kaveh Shahbazian for Reading/writing INI file in C# Kaveh Shahbazian2009-09-14T09:57:21Z2009-09-14T09:57:21Z<p>You can use <a href="http://sourceforge.net/projects/nini/" rel="nofollow">NIni</a> lib.</p>