Michael Miceli

Results 4 comments of Michael Miceli

Can you share your code? I am unable to reproduce this. This is the code I tested with ``` FileIniDataParser INIParser = new FileIniDataParser(new IniDataParser(new IniParserConfiguration() { AssigmentSpacer = "...

The difference isn't caused by any limits with `Parser.ReadFile(Filename)`. The difference comes from the fact that INIParser doesn't write out duplicate keys. In your input .ini file, there are many...

Hi @mlukac89, unfortunately, this library does not support writing out duplicate keys. `AllowDuplicateKeys` is a setting that allows reading INI files with duplicate keys. If you set `AllowDuplicateKeys` to false,...

This is already supported. You can do `iniData["section1"]["key1"] = "\" value\"";`