다음을 통해 공유


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 빈 instance 만드는 방법을 보여줍니다.

// 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 개체의 배열입니다.

예외

value이(가) null인 경우

적용 대상

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 개체입니다.

예외

value이(가) null인 경우

적용 대상