.NET支持的类型参数约束有以下五种:
where T : struct | T必须是一个结构类型where T : class | T必须是一个Class类型where T : new() | T必须要有一个无参构造函数where T : NameOfBaseClass | T必须继承名为NameOfBaseClass的类where T : NameOfInterface | T必须实现名为NameOfInterface的接口示例:
public class Myclasswhere T:class where U:struct