CodeTypeParameterCollection.AddRange Method

Definition

Copies the specified CodeTypeParameter objects to the end of the collection.

Overloads

AddRange(CodeTypeParameter[])

Copies the elements of the specified CodeTypeParameter array to the end of the collection.

AddRange(CodeTypeParameterCollection)

Copies the elements of the specified CodeTypeParameterCollection to the end of the collection.

AddRange(CodeTypeParameter[])

Source:
CodeTypeParameterCollection.cs
Source:
CodeTypeParameterCollection.cs
Source:
CodeTypeParameterCollection.cs

Copies the elements of the specified CodeTypeParameter array to the end of the collection.

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

Parameters

value
CodeTypeParameter[]

An array of type CodeTypeParameter containing the objects to add to the collection.

Exceptions

value is null.

Applies to

AddRange(CodeTypeParameterCollection)

Source:
CodeTypeParameterCollection.cs
Source:
CodeTypeParameterCollection.cs
Source:
CodeTypeParameterCollection.cs

Copies the elements of the specified CodeTypeParameterCollection to the end of the collection.

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

Parameters

value
CodeTypeParameterCollection

A CodeTypeParameterCollection containing the CodeTypeParameter objects to add to the collection.

Exceptions

value is null.

Applies to