Hello,
I am trying to read settings from a custom configuration file but get the error:
"Could not create System.Configuration.DictionarySectionHandler,System"
The configuration file looks like:
and the C# code looks like:
IDictionary dictionary = (IDictionary)ConfigurationSettings.GetConfig(@"errorLogConfig/errorModule");
I tried using
and it worked, but its not the ideal solution...
Thanks for any help,
chris