DataTableMappingCollection.AddRange 方法

定义

将给定数组的元素复制到集合末尾。Copies the elements of a given array to the end of the collection.

重载

AddRange(Array)

将指定的 Array 的元素复制到集合末尾。Copies the elements of the specified Array to the end of the collection.

AddRange(DataTableMapping[])

将指定的 DataTableMapping 数组的元素复制到集合末尾。Copies the elements of the specified DataTableMapping array to the end of the collection.

AddRange(Array)

将指定的 Array 的元素复制到集合末尾。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)

参数

values
Array

要添加到集合的值的 ArrayAn Array of values to add to the collection.

适用于

AddRange(DataTableMapping[])

将指定的 DataTableMapping 数组的元素复制到集合末尾。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())

参数

values
DataTableMapping[]

要添加到集合中的 DataTableMapping 对象的数组。The array of DataTableMapping objects to add to the collection.

适用于