这些方法签名有什么区别?
public void T MyMethod<T>(T parameter)
和
public void T MyMethod<T>(T parameter) where T : class
它们似乎有相同的结果……那么T:class的作用是什么?
解决方法
在第二种方法中,T只能是一个类,不能是结构类型.
见Constraints on Type Parameters (C# Programming Guide):
where T : class
The type argument must be a reference [class] type; this applies also to any class,interface,delegate,or array type.