CodeStatementCollection 构造函数

定义

初始化 CodeStatementCollection 类的新实例。

重载

CodeStatementCollection()

初始化 CodeStatementCollection 类的新实例。

CodeStatementCollection(CodeStatement[])

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

CodeStatementCollection(CodeStatementCollection)

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

CodeStatementCollection()

Source:
CodeStatementCollection.cs
Source:
CodeStatementCollection.cs
Source:
CodeStatementCollection.cs

初始化 CodeStatementCollection 类的新实例。

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

示例

以下示例演示如何创建 类的 CodeStatementCollection 空实例。

// Creates an empty CodeStatementCollection.
CodeStatementCollection^ collection = gcnew CodeStatementCollection;
// Creates an empty CodeStatementCollection.
CodeStatementCollection collection = new CodeStatementCollection();
' Creates an empty CodeStatementCollection.
Dim collection As New CodeStatementCollection

适用于

CodeStatementCollection(CodeStatement[])

Source:
CodeStatementCollection.cs
Source:
CodeStatementCollection.cs
Source:
CodeStatementCollection.cs

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

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

参数

value
CodeStatement[]

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

例外

valuenull

适用于

CodeStatementCollection(CodeStatementCollection)

Source:
CodeStatementCollection.cs
Source:
CodeStatementCollection.cs
Source:
CodeStatementCollection.cs

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

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

参数

value
CodeStatementCollection

一个 CodeStatementCollection 对象,用来初始化集合。

例外

valuenull

适用于