标签: c# generics
SomeObject is SubClass<foo>
评估为true,但这是
true
SomeObject is SubClass<object>
是false
false
为什么? foo是一个类,因此它不是对象吗?
foo