Reading/writing INI file in C# - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T08:19:08Z http://stackoverflow.com/feeds/question/217902 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/217902/reading-writing-ini-file-in-c 8 Reading/writing INI file in C# zendar 2008-10-20T09:37:22Z 2009-09-14T09:57:21Z <p>Is there any class in .Net framework that can read/write standard ini files:</p> <pre><code>[Section] &lt;keyname&gt;=&lt;value&gt; ... </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#217910 13 Answer by David Arno for Reading/writing INI file in C# David Arno 2008-10-20T09:42:20Z 2008-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#217913 9 Answer by splattne for Reading/writing INI file in C# splattne 2008-10-20T09:42:55Z 2008-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#217917 4 Answer by Muxa for Reading/writing INI file in C# Muxa 2008-10-20T09:44:46Z 2008-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 -2 Answer by Boyet for Reading/writing INI file in C# Boyet 2009-07-31T02:53:47Z 2009-07-31T02:53:47Z <p>Not working in Windows Vista</p> http://stackoverflow.com/questions/217902/reading-writing-ini-file-in-c/1420635#1420635 1 Answer by Kaveh Shahbazian for Reading/writing INI file in C# Kaveh Shahbazian 2009-09-14T09:57:21Z 2009-09-14T09:57:21Z <p>You can use <a href="http://sourceforge.net/projects/nini/" rel="nofollow">NIni</a> lib.</p>