CodeCommentStatementCollection.Add(CodeCommentStatement) Metodo

Definizione

Aggiunge l'oggetto CodeCommentStatement specificato alla raccolta.

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

Parametri

value
CodeCommentStatement

L'oggetto CodeCommentStatement da aggiungere.

Restituisce

L'indice in corrispondenza del quale è stato inserito il nuovo elemento.

Esempio

Nell'esempio seguente viene illustrato come aggiungere un oggetto a un'istanza CodeCommentStatementCodeCommentStatementCollection .

// 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"))

Si applica a

Vedi anche