How can I compare the types of two objects declared as type.
I want to know if two objects are of the same type or from the same base class.
Any help is appreciated.
e.g.
private bool AreSame(Type a, Type b) {
}
|
feedback
|
|
Say
If you want to check if one is a base class of the other, then try If you know the specific base class, then just use the
Otherwise, you'll have to walk the inheritance hierarchy directly. | |||||||||||
feedback
|
|
You can also use the "IS" keyword, if you expect the two objects to be of a certain type. This will also work for comparing sub-classes to parent classes and also classes that implement interfaces and so forth.
| |||||||
feedback
|
|
There's a bit of a problem with this idea, though, as every object (and, indeed, every type) DOES have a common base class, Object. What you need to define is how far up the chain of inheritance you want to go (whether it's they're either the same or they have the same immediate parent, or one is the immediate parent of the other, etc.) and do your checks that way. If your strict criteria is that the function should return true if...
You could use
| |||||||||||
feedback
|
|
I tried out the following with a hierarchy using both interfaces and concrete classes. It walks up the base class chain for one of the types till it reaches "object" at which we check if the current destination type is assignable to the source type. We also check if the types have a common interface. if they do then they 'AreSame' Hope this helps.
| |||
|
feedback
|