Question:
In C# do you have a class for handling properties
files ? In Java I use the Properties
class, I was wondering if there is an equivalent in C#?
Answer:
There are some libraries that allow you to do something very sophisticated. I wouldn't be able to name a specific one.
There is something a little different in the standard library, it would be the ConfigurationManager
class.
There is an answer on SO with an example trying to reproduce the base of this class in C#.