[csharp] view plaincopy
 
public class Reflect<T> where T : class
{  

这是参数类型约束,指定T必须是Class类型。

 

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

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-09-12
  • 2021-10-17
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-11-03
  • 2021-05-25
  • 2022-12-23
  • 2021-11-28
  • 2022-12-23
相关资源
相似解决方案