Struct SUndirectedEdge<TVertex>
A struct based IUndirectedEdge<TVertex> implementation (it is by design an equatable edge).
Inherited Members
System.ValueType.Equals(System.Object)
System.ValueType.GetHashCode()
System.Object.Equals(System.Object, System.Object)
System.Object.GetType()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: QuikGraph
Assembly: QuikGraph.dll
Syntax
[Serializable]
public struct SUndirectedEdge<TVertex> : IUndirectedEdge<TVertex>, IEdge<TVertex>
Type Parameters
| Name | Description |
|---|---|
| TVertex | Vertex type. |
Constructors
| Improve this Doc View SourceSUndirectedEdge(TVertex, TVertex)
Initializes a new instance of the SUndirectedEdge<TVertex> struct.
Declaration
public SUndirectedEdge(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 readonly TVertex Source { get; }
Property Value
| Type | Description |
|---|---|
| TVertex |
Target
Gets the target vertex.
Declaration
public readonly 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.ValueType.ToString()