DataTableMappingCollection.Remove 方法

定义

从集合中移除指定的对象。

重载

Remove(DataTableMapping)

从集合中移除指定的 DataTableMapping 对象。

Remove(Object)

从集合中移除指定的 DataTableMapping 对象。

Remove(DataTableMapping)

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

从集合中移除指定的 DataTableMapping 对象。

public:
 void Remove(System::Data::Common::DataTableMapping ^ value);
public void Remove (System.Data.Common.DataTableMapping value);
member this.Remove : System.Data.Common.DataTableMapping -> unit
Public Sub Remove (value As DataTableMapping)

参数

value
DataTableMapping

要移除的 DataTableMapping 对象。

适用于

Remove(Object)

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

从集合中移除指定的 DataTableMapping 对象。

public:
 virtual void Remove(System::Object ^ value);
public void Remove (object? value);
public void Remove (object value);
abstract member Remove : obj -> unit
override this.Remove : obj -> unit
Public Sub Remove (value As Object)

参数

value
Object

要移除的 DataTableMapping 对象。

实现

例外

指定的对象不是 DataTableMapping 对象。

指定的对象不在集合中。

示例

以下示例在 集合中搜索 DataTableMapping 。 如果集合中存在映射,则会将其删除。 如果集合中不存在映射,则会将其添加到集合并显示其索引。 该示例假定 DataTableMappingCollection 已创建集合和 DataTableMapping 对象。

public void ChangedMyMind()
{
    // ...
    // create mappings and mapping
    // ...
    if (mappings.Contains((Object) mapping))
    {
        mappings.Remove((Object) mapping);
    }
    else
    {
        mappings.Add((Object) mapping);
        Console.WriteLine("Index of new mapping: "
            + mappings.IndexOf((Object) mapping));
    }
}
Public Sub ChangedMyMind()
    ' ...
    ' create mappings and mapping
    ' ...
    If mappings.Contains(CType(mapping, Object)) Then
        mappings.Remove(CType(mapping, Object))
    Else
        mappings.Add(CType(mapping, Object))
        Console.WriteLine("Index of new mapping: " _
           + mappings.IndexOf(CType(mapping, Object)).ToString())
    End If
End Sub

适用于