CodeCatchClauseCollection.Insert(Int32, CodeCatchClause) Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Inserisce l'oggetto CodeCatchClause specificato nella raccolta in corrispondenza dell'indice specificato.
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)
Parametri
- index
- Int32
Indice in base zero in corrispondenza del quale inserire l'oggetto specificato.
- value
- CodeCatchClause
Oggetto CodeCatchClause da inserire.
Esempio
Nell'esempio seguente viene illustrato come utilizzare il Insert metodo per aggiungere un CodeCatchClause oggetto a un oggetto CodeCatchClauseCollection.
// 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"))