Can I convert .NET's XML config to INI? [closed]

kariz

New Member
.NET recommends the use of XML files for config and data, unlike INI files like Windows used to use. Is it possible to convert this XML configuration to INI to save disk space?XML:\[code\]<root> <MainWindow> <Left value="http://stackoverflow.com/questions/11149581/100" /> <Top value="http://stackoverflow.com/questions/11149581/100" /> </MainWindow></root>\[/code\]INI:\[code\][MainWindow]Left="100"Top="100"\[/code\]
 
Back
Top