CodeTypeDeclaration.TypeParameters 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取类型声明的类型参数。
public:
property System::CodeDom::CodeTypeParameterCollection ^ TypeParameters { System::CodeDom::CodeTypeParameterCollection ^ get(); };
public System.CodeDom.CodeTypeParameterCollection TypeParameters { get; }
[System.Runtime.InteropServices.ComVisible(false)]
public System.CodeDom.CodeTypeParameterCollection TypeParameters { get; }
member this.TypeParameters : System.CodeDom.CodeTypeParameterCollection
[<System.Runtime.InteropServices.ComVisible(false)>]
member this.TypeParameters : System.CodeDom.CodeTypeParameterCollection
Public ReadOnly Property TypeParameters As CodeTypeParameterCollection
属性值
CodeTypeParameterCollection 包含类型声明的类型参数。
- 属性
注解
泛型类型声明包含一个或多个称为类型参数的未指定类型。 类型参数名称代表泛型声明正文中的类型。 例如, 类的 List<T> 泛型声明包含类型参数 T
。
有关泛型的详细信息,请参阅 .NET Framework 类库中的泛型。