Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
4  
What do you mean by "pass a type to another class"? Your question is very unclear at the moment. – Jon Skeet Jul 21 '12 at 7:00
1  
This is not a method, but a readonly property... – aleroot Jul 21 '12 at 7:16
The code give me unhanded exception that "Unable to cast object of type 'System.Configuration.DefaultSection' to type 'TestCustomConfigSecCls'. – user1542287 Jul 21 '12 at 7:52
If you look in the debugger, what type is a? – Steve Greatrex Jul 21 '12 at 8:09
What is ConfigurationSection and what is TestCustomConfigSecCls? – Alvin Wong Jul 21 '12 at 8:12
show 2 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.