Click or drag to resize
EdgeWeightedDigraphAddEdge Method
Adds the directed edge e to this edge-weighted digraph.

Namespace: Algs4Net
Assembly: Algs4Net (in Algs4Net.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public void AddEdge(
	DirectedEdge e
)

Parameters

e
Type: Algs4NetDirectedEdge
the edge
Exceptions
ExceptionCondition
IndexOutOfRangeExceptionunless endpoints of edge are between 0 and V-1
See Also