Bagikan melalui


CodeCommentStatementCollection.Add(CodeCommentStatement) Metode

Definisi

Menambahkan objek yang ditentukan CodeCommentStatement ke koleksi.

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

Parameter

value
CodeCommentStatement

Objek CodeCommentStatement yang akan ditambahkan.

Mengembalikan

Indeks tempat elemen baru disisipkan.

Contoh

Contoh berikut menunjukkan cara menambahkan CodeCommentStatement objek ke CodeCommentStatementCollection instans.

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

Berlaku untuk

Lihat juga