[]
        
(Showing Draft Content)

C1.DataCollection.IDataCollectionEx.RemoveAsync

RemoveAsync Method

RemoveAsync<T>(IDataCollection<T>, int, CancellationToken)

Removes the item at the specified index from the collection.

Declaration
public static Task RemoveAsync<T>(this IDataCollection<T> dataCollection, int index, CancellationToken cancellationToken = default) where T : class?
Parameters
Type Name Description
IDataCollection<T> dataCollection

The data collection.

int index

The index of the item that will be removed.

CancellationToken cancellationToken

The cancellation token.

Returns
Type Description
Task
Type Parameters
Name Description
T

RemoveAsync<T>(IDataCollection<T>, int)

Removes the item at the specified index from the collection.

Declaration
public static Task RemoveAsync<T>(this IDataCollection<T> dataCollection, int index) where T : class?
Parameters
Type Name Description
IDataCollection<T> dataCollection

The data collection.

int index

The index of the item that will be removed.

Returns
Type Description
Task
Type Parameters
Name Description
T