Removes a range of elements from the List.
Namespace:
Classless.Hasher
Assembly:
Classless.Hasher (in Classless.Hasher.dll) Version: 0.8.3649.33599
Syntax
C# |
---|
public void RemoveRange(
int index,
int count
) |
Visual Basic (Declaration) |
---|
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