http://bojordan.com/log/?p=518If you’ve used a standard C# App.config, you’re familiar with the ConfigurationManager object in System.Configuration:
string myConfigValue = ConfigurationManager.AppSettings["myConfigKey"];
This reads, by default, from a file similar to your application’s executable; if your executable is “MyApplication.exe”,
(
Read more... )