Bagikan melalui


CodeCatchClauseCollection.Add(CodeCatchClause) Metode

Definisi

Menambahkan objek yang ditentukan CodeCatchClause ke koleksi.

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

Parameter

value
CodeCatchClause

Objek CodeCatchClause yang akan ditambahkan.

Mengembalikan

Indeks tempat elemen baru disisipkan.

Contoh

Contoh berikut menunjukkan cara menambahkan CodeCatchClause objek ke CodeCatchClauseCollection instans.

// Adds a CodeCatchClause to the collection.
collection->Add( gcnew CodeCatchClause( "e" ) );
// Adds a CodeCatchClause to the collection.
collection.Add( new CodeCatchClause("e") );
' Adds a CodeCatchClause to the collection.
collection.Add(New CodeCatchClause("e"))

Berlaku untuk

Lihat juga