Interface IEdge<TVertex>
Represents a directed edge.
Namespace: QuikGraph
Assembly: QuikGraph.dll
Syntax
public interface IEdge<out TVertex>
Type Parameters
Name | Description |
---|---|
TVertex | Vertex type. |
Properties
| Improve this Doc View SourceSource
Gets the source vertex.
Declaration
TVertex Source { get; }
Property Value
Type | Description |
---|---|
TVertex |
Target
Gets the target vertex.
Declaration
TVertex Target { get; }
Property Value
Type | Description |
---|---|
TVertex |