I am working with two types, one generic and the other not. I don't have instances of objects but I want to find out if ( MyType is T )
or in other words if ( MyType inherits T)
Again, I am looking for:
if ( Truck is Vehicle )
not
if ( MyTruckObject is Vehicle)