Udostępnij za pośrednictwem


CodeCommentStatementCollection.Add(CodeCommentStatement) Metoda

Definicja

Dodaje określony CodeCommentStatement obiekt do kolekcji.

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

Parametry

value
CodeCommentStatement

Obiekt do dodania CodeCommentStatement .

Zwraca

Indeks, w którym został wstawiony nowy element.

Przykłady

W poniższym przykładzie pokazano, jak dodać CodeCommentStatement obiekt do CodeCommentStatementCollection wystąpienia.

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

Dotyczy

Zobacz też