GraphBaseTVertex, TEdgeGetEdges Method |
Gets all the edges between startVertex and endVertex
Namespace: SD.Tools.Algorithmia.GraphsAssembly: SD.Tools.Algorithmia (in SD.Tools.Algorithmia.dll) Version: 1.2.0.0 (1.2.14.1118)
Syntax public HashSet<TEdge> GetEdges(
TVertex startVertex,
TVertex endVertex
)
Public Function GetEdges (
startVertex As TVertex,
endVertex As TVertex
) As HashSet(Of TEdge)
Parameters
- startVertex
- Type: TVertex
The start vertex. - endVertex
- Type: TVertex
The end vertex.
Return Value
Type:
HashSetTEdgeSet of edges between startVertex and endVertex or an empty set if one or both vertices aren't part of this graph or there are no edges.
See Also