Compartir a través de


CodeCommentStatementCollection Constructores

Definición

Inicializa una nueva instancia de la clase CodeCommentStatementCollection.

Sobrecargas

CodeCommentStatementCollection()

Inicializa una nueva instancia de la clase CodeCommentStatementCollection.

CodeCommentStatementCollection(CodeCommentStatement[])

Inicializa una nueva instancia de la clase CodeCommentStatementCollection que contiene la matriz especificada de objetos CodeCommentStatement.

CodeCommentStatementCollection(CodeCommentStatementCollection)

Inicializa una nueva instancia de la clase CodeCommentStatementCollection que contiene los elementos de la colección de origen especificada.

CodeCommentStatementCollection()

Source:
CodeCommentStatementCollection.cs
Source:
CodeCommentStatementCollection.cs
Source:
CodeCommentStatementCollection.cs

Inicializa una nueva instancia de la clase CodeCommentStatementCollection.

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

Se aplica a

CodeCommentStatementCollection(CodeCommentStatement[])

Source:
CodeCommentStatementCollection.cs
Source:
CodeCommentStatementCollection.cs
Source:
CodeCommentStatementCollection.cs

Inicializa una nueva instancia de la clase CodeCommentStatementCollection que contiene la matriz especificada de objetos CodeCommentStatement.

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

Parámetros

value
CodeCommentStatement[]

Matriz de objetos CodeCommentStatement con los que se inicializará la colección.

Excepciones

Uno o más objetos de la matriz son null.

Se aplica a

CodeCommentStatementCollection(CodeCommentStatementCollection)

Source:
CodeCommentStatementCollection.cs
Source:
CodeCommentStatementCollection.cs
Source:
CodeCommentStatementCollection.cs

Inicializa una nueva instancia de la clase CodeCommentStatementCollection que contiene los elementos de la colección de origen especificada.

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

Parámetros

value
CodeCommentStatementCollection

Objeto CodeCommentStatementCollection con el que se inicializa la colección.

Excepciones

value es null.

Se aplica a