|
|
|
|
|
by codeflo
604 days ago
|
|
You’d probably be surprised how often people have to create config files programmatically. With properly specified formats, you can serialize the configuration, which means nesting and string escapes are taken care of automatically. With half-baked custom formats, you have to resort to string replacement and praying. Having said that, there’s an official RFC for CSV, and INI files are de-facto specified by Microsoft’s implementation. |
|