Interface IEdge
Represents a single edge that connects two nodes together in a directed graph.
public interface IEdge
- Extension Methods
Properties
Origin
Gets the node that this edge starts at in the directed graph.
INode Origin { get; }
Property Value
Target
Gets the node that this edge points to in the directed graph.
INode Target { get; }