Bridge

List<(Of <(<'T>)>)>..::..RemoveRange Method

Removes a range of elements from the List<(Of <(<'T>)>)>.

Namespace:  System.Collections.Generic
Assembly:  Bridge (in Bridge.dll)

Syntax


public List<T> RemoveRange(
	int index,
	int count
)
Public Function RemoveRange ( _
	index As Integer, _
	count As Integer _
) As List(Of T)
public:
List<T>^ RemoveRange(
	int^ index, 
	int^ count
)

Parameters

index
Type: System..::..Int32
The zero-based starting index of the range of elements to remove.
count
Type: System..::..Int32
The number of elements to remove.

Exceptions


ExceptionCondition
System..::..ArgumentOutOfRangeExceptionindex is less than 0.-or-count is less than 0.
System..::..ArgumentExceptionindex and count do not denote a valid range of elements in the List<(Of <(<'T>)>)>.