I am trying to read StartingMonthColumn and CategoryHeadingColumn from the below app.config file using the code
ConfigurationSettings.AppSettings[\"StartingM
Try:
string value = ConfigurationManager.AppSettings[key];
For more details check: Reading Keys from App.Config