CodeCatchClauseCollection.Add(CodeCatchClause) Metodo

Definizione

Aggiunge l'oggetto CodeCatchClause specificato alla raccolta.

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

Parametri

value
CodeCatchClause

L'oggetto CodeCatchClause da aggiungere.

Restituisce

L'indice in corrispondenza del quale è stato inserito il nuovo elemento.

Esempio

Nell'esempio seguente viene illustrato come aggiungere un CodeCatchClause oggetto all'istanza CodeCatchClauseCollection .

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

Si applica a

Vedi anche