Share via


CodeCatchClauseCollection Constructeurs

Définition

Initialise une nouvelle instance de la classe CodeCatchClauseCollection.

Surcharges

CodeCatchClauseCollection()

Initialise une nouvelle instance de la classe CodeCatchClauseCollection.

CodeCatchClauseCollection(CodeCatchClause[])

Initialise une nouvelle instance de la classe CodeCatchClauseCollection contenant le tableau d'objets CodeCatchClause spécifié.

CodeCatchClauseCollection(CodeCatchClauseCollection)

Initialise une nouvelle instance de la classe CodeCatchClauseCollection contenant les éléments de la collection source spécifiée.

CodeCatchClauseCollection()

Source:
CodeCatchClauseCollection.cs
Source:
CodeCatchClauseCollection.cs
Source:
CodeCatchClauseCollection.cs

Initialise une nouvelle instance de la classe CodeCatchClauseCollection.

public:
 CodeCatchClauseCollection();
public CodeCatchClauseCollection ();
Public Sub New ()

S’applique à

CodeCatchClauseCollection(CodeCatchClause[])

Source:
CodeCatchClauseCollection.cs
Source:
CodeCatchClauseCollection.cs
Source:
CodeCatchClauseCollection.cs

Initialise une nouvelle instance de la classe CodeCatchClauseCollection contenant le tableau d'objets CodeCatchClause spécifié.

public:
 CodeCatchClauseCollection(cli::array <System::CodeDom::CodeCatchClause ^> ^ value);
public CodeCatchClauseCollection (System.CodeDom.CodeCatchClause[] value);
new System.CodeDom.CodeCatchClauseCollection : System.CodeDom.CodeCatchClause[] -> System.CodeDom.CodeCatchClauseCollection
Public Sub New (value As CodeCatchClause())

Paramètres

value
CodeCatchClause[]

Tableau d'objets CodeCatchClause à utiliser pour initialiser la collection.

Exceptions

Un ou plusieurs objets du tableau ont la valeur null.

S’applique à

CodeCatchClauseCollection(CodeCatchClauseCollection)

Source:
CodeCatchClauseCollection.cs
Source:
CodeCatchClauseCollection.cs
Source:
CodeCatchClauseCollection.cs

Initialise une nouvelle instance de la classe CodeCatchClauseCollection contenant les éléments de la collection source spécifiée.

public:
 CodeCatchClauseCollection(System::CodeDom::CodeCatchClauseCollection ^ value);
public CodeCatchClauseCollection (System.CodeDom.CodeCatchClauseCollection value);
new System.CodeDom.CodeCatchClauseCollection : System.CodeDom.CodeCatchClauseCollection -> System.CodeDom.CodeCatchClauseCollection
Public Sub New (value As CodeCatchClauseCollection)

Paramètres

value
CodeCatchClauseCollection

CodeCatchClauseCollection utilisé pour initialiser la collection.

Exceptions

value a la valeur null.

S’applique à