I have following method return type as Configuration Section class and want to pass a type to another class please give me the respective solution.
public static TestCustomConfigSecCls CompanyInfo
{
get
{
ConfigurationSection a = Instance.GetConfigSection(Key);
return (TestCustomConfigSecCls)a;
}
}
It gives Unhanded Exception :- Unable to cast object of type System.Configuration.DefaultSection to type TestCustomConfigSecCls.

ConfigurationSectionand what isTestCustomConfigSecCls? – Alvin Wong Jul 21 '12 at 8:12