Freigeben über


CodeCatchClauseCollection.Insert(Int32, CodeCatchClause) Methode

Definition

Fügt das angegebene CodeCatchClause-Objekt am angegebenen Index in die Auflistung ein.

public:
 void Insert(int index, System::CodeDom::CodeCatchClause ^ value);
public void Insert (int index, System.CodeDom.CodeCatchClause value);
member this.Insert : int * System.CodeDom.CodeCatchClause -> unit
Public Sub Insert (index As Integer, value As CodeCatchClause)

Parameter

index
Int32

Der nullbasierte Index, an dem das angegebene Objekt eingefügt werden soll.

value
CodeCatchClause

Das einzufügende CodeCatchClause-Objekt.

Beispiele

Im folgenden Beispiel wird veranschaulicht, wie die Insert -Methode verwendet wird, um einem -CodeCatchClauseCollectionObjekt ein CodeCatchClause -Objekt hinzuzufügen.

// Inserts a CodeCatchClause at index 0 of the collection.
collection->Insert( 0, gcnew CodeCatchClause( "e" ) );
// Inserts a CodeCatchClause at index 0 of the collection.
collection.Insert( 0, new CodeCatchClause("e") );
' Inserts a CodeCatchClause at index 0 of the collection.
collection.Insert(0, New CodeCatchClause("e"))

Gilt für:

Weitere Informationen