vote up 3 vote down star

Suppose you create a generic Object variable and assign it to a specific instance. If you do GetType(), will it get type Object or the type of the original class?

flag

Have you tried the 10 or so lines of code to try this? – Mitch Wheat Nov 24 '08 at 23:14
Yep -- I did this as a "had a question and wanted to share the answer" post :) – kurious Nov 24 '08 at 23:15
...posted same time as your trial answer! – Mitch Wheat Nov 24 '08 at 23:15
Yeah, I was debating whether to include the "answer" in the question but thought it'd look weird. – kurious Nov 24 '08 at 23:17
You posted a question just so you could answer your own question? This isn't a blog, it is a Q&A site. Are you fishing for cred? – Brian Genisio Nov 24 '08 at 23:17
show 5 more comments

3 Answers

vote up 0 vote down check

Yes.

You can also do:

object c = new FooBar();
if(c is FooBar)
     Console.WriteLine("FOOBAR!!!");
link|flag
vote up 2 vote down

Short answer: GetType() will return the Type of the specific object. I made a quick app to test this:

        Foo f = new Foo();
        Type t = f.GetType();

        Object o = (object)f;
        Type t2 = o.GetType();

        bool areSame = t.Equals(t2);

And yep, they are the same.

link|flag
use: if(o is Foo) instead. – Alan Nov 24 '08 at 23:15
vote up 0 vote down

Calling GetType() will call the ACTUAL type. If you want to know the base type, you can call GetType().BaseType

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.