Udostępnij za pośrednictwem


CodeCatchClauseCollection.Add(CodeCatchClause) Metoda

Definicja

Dodaje określony CodeCatchClause obiekt do kolekcji.

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

Parametry

value
CodeCatchClause

Obiekt do dodania CodeCatchClause .

Zwraca

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

Przykłady

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

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

Dotyczy

Zobacz też