mat
mat

Reputation: 1717

Looking for a class to create and parse configuration files in various formats in c#

I want to use (read/write/change) configuration files which have various formats. Life for instance

key1: value1
key2: value2

or

[section1]
key=value

[section2]
key=value

I assume that there are a million different classes flying around the web, which accomplish this not very extraordinary task, but I was unable to find a good implementation. Could someone reccomend one?

Upvotes: 1

Views: 139

Answers (1)

konrad.kruczynski
konrad.kruczynski

Reputation: 47641

It's a bit old, but generally works: Nini. About the supported formats: look here.

Upvotes: 1

Related Questions