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?
|
|
|||||||||||
|
|
|
Yes. You can also do:
|
||
|
|
|
|
Short answer: GetType() will return the Type of the specific object. I made a quick app to test this:
And yep, they are the same. |
||
|
|
|
Calling GetType() will call the ACTUAL type. If you want to know the base type, you can call GetType().BaseType |
||
|
|
