Removes count items from the collection
Namespace:
Tortuga.Anchor
Assembly:
Tortuga.Anchor (in Tortuga.Anchor.dll)
public static void RemoveRange<T>(
IList<T> list,
int startingIndex,
int count
)
Public Shared Sub RemoveRange(Of T) ( _
list As IList(Of T), _
startingIndex As Integer, _
count As Integer _
)
Type Parameters
- T
Parameters
- list
- Type: IList<(Of <(<'T>)>)>
- startingIndex
- Type: Int32
- count
- Type: Int32
This isn't as fast as a real RemoveRange, it just removes one item at a time.