CodeCatchClauseCollection.Add(CodeCatchClause) Méthode

Définition

Ajoute l'objet CodeCatchClause spécifié à la collection.

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

Paramètres

value
CodeCatchClause

Objet CodeCatchClause à ajouter.

Retours

Index au niveau duquel le nouvel élément a été inséré.

Exemples

L’exemple suivant montre comment ajouter un CodeCatchClause objet à l’instance 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"))

S’applique à

Voir aussi