标签:接口 where art nbsp 有一个 构造函数 str class类 int
.NET支持的类型参数约束有以下五种:
where T : struct T必须是一个结构类型
where T : class T必须是一个Class类型
where T : new() T必须要有一个无参构造函数
where T : NameOfBaseClass T必须继承名为NameOfBaseClass的类
where T : NameOfInterface T必须实现名为NameOfInterface的接口
如下:
1 public partial class BaseDal<T> where T:class,new() 2 { 3 4 }
标签:接口 where art nbsp 有一个 构造函数 str class类 int
原文地址:http://www.cnblogs.com/jonfan/p/7220141.html