DataTableMappingCollection.Remove Method

Definition

Removes a specified object from the collection.

Overloads

Remove(DataTableMapping)

Removes the specified DataTableMapping object from the collection.

Remove(Object)

Removes the specified DataTableMapping object from the collection.

Remove(DataTableMapping)

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

Removes the specified DataTableMapping object from the collection.

C#
public void Remove(System.Data.Common.DataTableMapping value);

Parameters

value
DataTableMapping

The DataTableMapping object to remove.

Applies to

.NET 10 ja muut versiot
Tuote Versiot
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1

Remove(Object)

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

Removes the specified DataTableMapping object from the collection.

C#
public void Remove(object? value);
C#
public void Remove(object value);

Parameters

value
Object

The DataTableMapping object to remove.

Implements

Exceptions

The object specified was not a DataTableMapping object.

The object specified is not in the collection.

Examples

The following example searches for a DataTableMapping within the collection. If the mapping exists in the collection, it is removed. If the mapping does not exist within the collection, it is added to the collection and its index is displayed. The example assumes that a DataTableMappingCollection collection and a DataTableMapping object have been created.

C#
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));
    }
}

Applies to

.NET 10 ja muut versiot
Tuote Versiot
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1