Sdílet prostřednictvím


CodeCommentStatementCollection.Add(CodeCommentStatement) Metoda

Definice

Přidá zadaný CodeCommentStatement objekt do kolekce.

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

Objekt CodeCommentStatement , který chcete přidat.

Návraty

Index, do kterého byl vložen nový prvek.

Příklady

Následující příklad ukazuje, jak přidat CodeCommentStatement objekt do CodeCommentStatementCollection instance.

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

Platí pro

Viz také