I\'ve got a few properties stored in my AppConfig and now I want to access them dynamically (e.g. in a loop or function).
Accessing the values using MySettings.NAME_
String propertyValue = MySettings.GetType() .GetProperty("NAME_OF_THAT_THING") .GetValue(MySettings, null); //replace MySettings with null in GetValue(...) if MySettings is a static class