Udostępnij za pośrednictwem


CodeCatchClauseCollection.AddRange Metoda

Definicja

Kopiuje elementy określonej CodeCatchClause tablicy na końcu kolekcji.

Przeciążenia

AddRange(CodeCatchClause[])

Kopiuje elementy określonej CodeCatchClause tablicy na końcu kolekcji.

AddRange(CodeCatchClauseCollection)

Kopiuje zawartość innego CodeCatchClauseCollection obiektu na końcu kolekcji.

AddRange(CodeCatchClause[])

Źródło:
CodeCatchClauseCollection.cs
Źródło:
CodeCatchClauseCollection.cs
Źródło:
CodeCatchClauseCollection.cs

Kopiuje elementy określonej CodeCatchClause tablicy na końcu kolekcji.

public:
 void AddRange(cli::array <System::CodeDom::CodeCatchClause ^> ^ value);
public void AddRange (System.CodeDom.CodeCatchClause[] value);
member this.AddRange : System.CodeDom.CodeCatchClause[] -> unit
Public Sub AddRange (value As CodeCatchClause())

Parametry

value
CodeCatchClause[]

Tablica typu CodeCatchClause zawierająca obiekty do dodania do kolekcji.

Wyjątki

value to null.

Przykłady

W poniższym przykładzie pokazano, jak za pomocą AddRange(CodeCatchClause[]) przeciążenia metody dodać elementy członkowskie tablicy CodeCatchClause obiektów do klasy CodeCatchClauseCollection.

// Adds an array of CodeCatchClause objects to the collection.
array<CodeCatchClause^>^clauses = {gcnew CodeCatchClause,gcnew CodeCatchClause};
collection->AddRange( clauses );

// Adds a collection of CodeCatchClause objects to the collection.
CodeCatchClauseCollection^ clausesCollection = gcnew CodeCatchClauseCollection;
clausesCollection->Add( gcnew CodeCatchClause( "e",gcnew CodeTypeReference( System::ArgumentOutOfRangeException::typeid ) ) );
clausesCollection->Add( gcnew CodeCatchClause( "e" ) );
collection->AddRange( clausesCollection );
// Adds an array of CodeCatchClause objects to the collection.
CodeCatchClause[] clauses = { new CodeCatchClause(), new CodeCatchClause() };
collection.AddRange( clauses );

// Adds a collection of CodeCatchClause objects to the collection.
CodeCatchClauseCollection clausesCollection = new CodeCatchClauseCollection();
clausesCollection.Add( new CodeCatchClause("e", new CodeTypeReference(typeof(System.ArgumentOutOfRangeException))) );
clausesCollection.Add( new CodeCatchClause("e") );
collection.AddRange( clausesCollection );
' Adds an array of CodeCatchClause objects to the collection.
Dim clauses As CodeCatchClause() = {New CodeCatchClause(), New CodeCatchClause()}
collection.AddRange(clauses)

' Adds a collection of CodeCatchClause objects to the collection.
Dim clausesCollection As New CodeCatchClauseCollection()
clausesCollection.Add(New CodeCatchClause("e", New CodeTypeReference(GetType(System.ArgumentOutOfRangeException))))
clausesCollection.Add(New CodeCatchClause("e"))
collection.AddRange(clausesCollection)

Zobacz też

Dotyczy

AddRange(CodeCatchClauseCollection)

Źródło:
CodeCatchClauseCollection.cs
Źródło:
CodeCatchClauseCollection.cs
Źródło:
CodeCatchClauseCollection.cs

Kopiuje zawartość innego CodeCatchClauseCollection obiektu na końcu kolekcji.

public:
 void AddRange(System::CodeDom::CodeCatchClauseCollection ^ value);
public void AddRange (System.CodeDom.CodeCatchClauseCollection value);
member this.AddRange : System.CodeDom.CodeCatchClauseCollection -> unit
Public Sub AddRange (value As CodeCatchClauseCollection)

Parametry

value
CodeCatchClauseCollection

Obiekt CodeCatchClauseCollection zawierający obiekty do dodania do kolekcji.

Wyjątki

value to null.

Przykłady

W poniższym przykładzie pokazano, jak za pomocą AddRange(CodeCatchClauseCollection) przeciążenia metody dodać elementy członkowskie jednego CodeCatchClauseCollection obiektu do innego CodeCatchClauseCollectionobiektu .

// Adds an array of CodeCatchClause objects to the collection.
array<CodeCatchClause^>^clauses = {gcnew CodeCatchClause,gcnew CodeCatchClause};
collection->AddRange( clauses );

// Adds a collection of CodeCatchClause objects to the collection.
CodeCatchClauseCollection^ clausesCollection = gcnew CodeCatchClauseCollection;
clausesCollection->Add( gcnew CodeCatchClause( "e",gcnew CodeTypeReference( System::ArgumentOutOfRangeException::typeid ) ) );
clausesCollection->Add( gcnew CodeCatchClause( "e" ) );
collection->AddRange( clausesCollection );
// Adds an array of CodeCatchClause objects to the collection.
CodeCatchClause[] clauses = { new CodeCatchClause(), new CodeCatchClause() };
collection.AddRange( clauses );

// Adds a collection of CodeCatchClause objects to the collection.
CodeCatchClauseCollection clausesCollection = new CodeCatchClauseCollection();
clausesCollection.Add( new CodeCatchClause("e", new CodeTypeReference(typeof(System.ArgumentOutOfRangeException))) );
clausesCollection.Add( new CodeCatchClause("e") );
collection.AddRange( clausesCollection );
' Adds an array of CodeCatchClause objects to the collection.
Dim clauses As CodeCatchClause() = {New CodeCatchClause(), New CodeCatchClause()}
collection.AddRange(clauses)

' Adds a collection of CodeCatchClause objects to the collection.
Dim clausesCollection As New CodeCatchClauseCollection()
clausesCollection.Add(New CodeCatchClause("e", New CodeTypeReference(GetType(System.ArgumentOutOfRangeException))))
clausesCollection.Add(New CodeCatchClause("e"))
collection.AddRange(clausesCollection)

Zobacz też

Dotyczy