Para verificar se um tipo é uma subclasse de outro tipo em C #, é fácil: typeof (SubClass).IsSubclassOf(typeof (BaseClass)); // returns true No entanto, isso irá falhar: typeof (BaseClass).IsSubclassOf(typeof (BaseClass)); // returns false Existe alguma maneira de verificar se um tipo é uma...