Aracılığıyla paylaş


CodeCatchClauseCollection.Insert(Int32, CodeCatchClause) Yöntem

Tanım

Belirtilen nesneyi belirtilen CodeCatchClause dizindeki koleksiyona ekler.

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)

Parametreler

index
Int32

Belirtilen nesnenin eklenmesi gereken sıfır tabanlı dizin.

value
CodeCatchClause

Eklenecek CodeCatchClause nesne.

Örnekler

Aşağıdaki örnekte yöntemi kullanılarak Insert nesnesine CodeCatchClauseCodeCatchClauseCollectionnasıl ekleneceği gösterilmektedir.

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

Şunlara uygulanır

Ayrıca bkz.