CodeTypeParameterCollection 构造函数

定义

初始化 CodeTypeParameterCollection 类的新实例。

重载

CodeTypeParameterCollection()

初始化 CodeTypeParameterCollection 类的新的空实例。

CodeTypeParameterCollection(CodeTypeParameter[])

初始化 CodeTypeParameterCollection 类的新实例,该实例包含指定的 CodeTypeParameter 对象数组。

CodeTypeParameterCollection(CodeTypeParameterCollection)

初始化 CodeTypeParameterCollection 类的新实例,该实例包含指定源集合的元素。

CodeTypeParameterCollection()

Source:
CodeTypeParameterCollection.cs
Source:
CodeTypeParameterCollection.cs
Source:
CodeTypeParameterCollection.cs

初始化 CodeTypeParameterCollection 类的新的空实例。

public:
 CodeTypeParameterCollection();
public CodeTypeParameterCollection ();
Public Sub New ()

适用于

CodeTypeParameterCollection(CodeTypeParameter[])

Source:
CodeTypeParameterCollection.cs
Source:
CodeTypeParameterCollection.cs
Source:
CodeTypeParameterCollection.cs

初始化 CodeTypeParameterCollection 类的新实例,该实例包含指定的 CodeTypeParameter 对象数组。

public:
 CodeTypeParameterCollection(cli::array <System::CodeDom::CodeTypeParameter ^> ^ value);
public CodeTypeParameterCollection (System.CodeDom.CodeTypeParameter[] value);
new System.CodeDom.CodeTypeParameterCollection : System.CodeDom.CodeTypeParameter[] -> System.CodeDom.CodeTypeParameterCollection
Public Sub New (value As CodeTypeParameter())

参数

value
CodeTypeParameter[]

用于初始化该集合的 CodeTypeParameter 对象数组。

适用于

CodeTypeParameterCollection(CodeTypeParameterCollection)

Source:
CodeTypeParameterCollection.cs
Source:
CodeTypeParameterCollection.cs
Source:
CodeTypeParameterCollection.cs

初始化 CodeTypeParameterCollection 类的新实例,该实例包含指定源集合的元素。

public:
 CodeTypeParameterCollection(System::CodeDom::CodeTypeParameterCollection ^ value);
public CodeTypeParameterCollection (System.CodeDom.CodeTypeParameterCollection value);
new System.CodeDom.CodeTypeParameterCollection : System.CodeDom.CodeTypeParameterCollection -> System.CodeDom.CodeTypeParameterCollection
Public Sub New (value As CodeTypeParameterCollection)

参数

value
CodeTypeParameterCollection

CodeTypeParameterCollection,用来初始化集合。

适用于