Method RemoveRange
RemoveRange(int, int)
Removes a range of nodes from the directed graph.
public void RemoveRange(int index, int count)
Parameters
indexintThe zero-based starting index of the range of nodes to remove.
countintThe number of nodes to remove.
Exceptions
- ArgumentOutOfRangeException
The
indexandcountwere out of bounds for the node list orcountis greater than the number of nodes fromindexto the end of the node list.