POSOlSoft.iniXML free .NET component


Home

Products

Azure

Download

Contacts

POSOlSoft.iniXML, version 1.2.1


POSOlSoft.iniXML is a .NET class, that stores the INI-file like information in the XML file.

If the INI file is:

[Section1]
Key1=key11
Key2=12
[Section2]
Key1=key21


Then the corresponding XML file will be:

<?xml version="1.0" encoding="utf-8"?>
<iniXML>
 <Section1>
  <Key1>key11</Key1>
  <Key2>12</Key2>
 </Section1>
 <Section2>
  <Key1>key21</Key1>
 </Section2>
</iniXML>

Detailed description of the iniXML class and its members may be found in the help file contained in the download.

POSOlSoft.iniXML class requires at least .NET 3.5 Client Profile and is free.


Download POSOlSoft.iniXML, version 1.2.1

History


13.10.2010 : v. 1.2.1
+ DefaultiniXMLName field

16.08.2010 : v. 1.2.0
+ ReadSectionKeysValues(string) method
+ FromIni(string, Encoding), FromIni(string), ToIni(string) methods

10.08.2010 : v. 1.1.1
* Vechabus namespace replaced with POSOlSoft
- some bugs fixed

4.02.2010 : v. 1.1.0
+ Read... methods without default parameter

25.12.2009 : v. 1.0.0
+ first public release