ISupportsRangeListTRemoveRange Method

Removes count amount of items from this ISupportsRangeListT at the specified index.

Definition

Namespace: KGySoft.Collections
Assembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 10.5.0
C#
void RemoveRange(
	int index,
	int count
)

Parameters

index  Int32
The zero-based index of the first item to remove.
count  Int32
The number of items to remove.

Exceptions

ArgumentOutOfRangeExceptionindex is not a valid index in the CircularListT.
-or-
count is less than 0.
ArgumentExceptionindex and count do not denote a valid range of elements in the list.

See Also