Method RemoveRange
RemoveRange(int, int)
Removes a range of nodes from the directed graph.
public void RemoveRange(int index, int count)
Parameters
index
intThe zero-based starting index of the range of nodes to remove.
count
intThe number of nodes to remove.
Exceptions
- ArgumentOutOfRangeException
The
index
andcount
were out of bounds for the node list orcount
is greater than the number of nodes fromindex
to the end of the node list.