DataTableMappingCollection.AddRange Method

Definition

Copies the elements of a given array to the end of the collection.

Overloads

AddRange(Array)

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

AddRange(DataTableMapping[])

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

AddRange(Array)

Source:
DataTableMappingCollection.cs
Source:
DataTableMappingCollection.cs
Source:
DataTableMappingCollection.cs

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

public:
 void AddRange(Array ^ values);
public void AddRange (Array values);
member this.AddRange : Array -> unit
Public Sub AddRange (values As Array)

Parameters

values
Array

An Array of values to add to the collection.

Applies to

AddRange(DataTableMapping[])

Source:
DataTableMappingCollection.cs
Source:
DataTableMappingCollection.cs
Source:
DataTableMappingCollection.cs

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

public:
 void AddRange(cli::array <System::Data::Common::DataTableMapping ^> ^ values);
public void AddRange (System.Data.Common.DataTableMapping[] values);
member this.AddRange : System.Data.Common.DataTableMapping[] -> unit
Public Sub AddRange (values As DataTableMapping())

Parameters

values
DataTableMapping[]

The array of DataTableMapping objects to add to the collection.

Applies to