CodeCommentStatementCollection.Add(CodeCommentStatement) Método

Definição

Adiciona o objeto CodeCommentStatement especificado à coleção.

public:
 int Add(System::CodeDom::CodeCommentStatement ^ value);
public int Add (System.CodeDom.CodeCommentStatement value);
member this.Add : System.CodeDom.CodeCommentStatement -> int
Public Function Add (value As CodeCommentStatement) As Integer

Parâmetros

value
CodeCommentStatement

O objeto CodeCommentStatement a ser adicionado.

Retornos

O índice no qual o novo elemento foi inserido.

Exemplos

O exemplo a seguir demonstra como adicionar um CodeCommentStatement objeto a uma CodeCommentStatementCollection instância.

// Adds a CodeCommentStatement to the collection.
collection->Add( gcnew CodeCommentStatement( "Test comment" ) );
// Adds a CodeCommentStatement to the collection.
collection.Add( new CodeCommentStatement("Test comment") );
' Adds a CodeCommentStatement to the collection.
collection.Add(New CodeCommentStatement("Test comment"))

Aplica-se a

Confira também