Removes a range of elements from the List.

Namespace: Classless.Hasher
Assembly: Classless.Hasher (in Classless.Hasher.dll) Version: 0.9.4179.24336

Syntax

C#
public void RemoveRange(
	int index,
	int count
)
Visual Basic
Public Sub RemoveRange ( _
	index As Integer, _
	count As Integer _
)
Visual C++
public:
void 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.

See Also