DataColumnMappingCollection.Insert 方法

定义

将一个对象插入 DataColumnMappingCollection 中的指定索引处。

重载

Insert(Int32, DataColumnMapping)

DataColumnMapping 中的指定索引处插入一个 DataColumnMappingCollection 对象。

Insert(Int32, Object)

DataColumnMapping 中的指定索引处插入一个 DataColumnMappingCollection 对象。

Insert(Int32, DataColumnMapping)

Source:
DataColumnMappingCollection.cs
Source:
DataColumnMappingCollection.cs
Source:
DataColumnMappingCollection.cs

DataColumnMapping 中的指定索引处插入一个 DataColumnMappingCollection 对象。

public:
 void Insert(int index, System::Data::Common::DataColumnMapping ^ value);
public void Insert (int index, System.Data.Common.DataColumnMapping value);
member this.Insert : int * System.Data.Common.DataColumnMapping -> unit
Public Sub Insert (index As Integer, value As DataColumnMapping)

参数

index
Int32

要插入的 DataColumnMapping 对象的从零开始的索引。

另请参阅

适用于

Insert(Int32, Object)

Source:
DataColumnMappingCollection.cs
Source:
DataColumnMappingCollection.cs
Source:
DataColumnMappingCollection.cs

DataColumnMapping 中的指定索引处插入一个 DataColumnMappingCollection 对象。

public:
 virtual void Insert(int index, System::Object ^ value);
public void Insert (int index, object? value);
public void Insert (int index, object value);
abstract member Insert : int * obj -> unit
override this.Insert : int * obj -> unit
Public Sub Insert (index As Integer, value As Object)

参数

index
Int32

要插入的 DataColumnMapping 对象的从零开始的索引。

value
Object

DataColumnMapping 对象。

实现

另请参阅

适用于