Class Edge<TVertex>
The default IEdge<TVertex> implementation (directed edge).
Inheritance
System.Object
Edge<TVertex>
Implements
IEdge<TVertex>
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: QuikGraph
Assembly: QuikGraph.dll
Syntax
[Serializable]
public class Edge<TVertex> : IEdge<TVertex>
Type Parameters
Name | Description |
---|---|
TVertex | Vertex type. |
Constructors
| Improve this Doc View SourceEdge(TVertex, TVertex)
Initializes a new instance of the Edge<TVertex> class.
Declaration
public Edge(TVertex source, TVertex target)
Parameters
Type | Name | Description |
---|---|---|
TVertex | source | The source vertex. |
TVertex | target | The target vertex. |
Exceptions
Type | Condition |
---|---|
System.ArgumentNullException |
|
System.ArgumentNullException |
|
Properties
| Improve this Doc View SourceSource
Gets the source vertex.
Declaration
public TVertex Source { get; }
Property Value
Type | Description |
---|---|
TVertex |
Target
Gets the target vertex.
Declaration
public TVertex Target { get; }
Property Value
Type | Description |
---|---|
TVertex |
Methods
| Improve this Doc View SourceToString()
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String |
Overrides
System.Object.ToString()