Does a depth first search on the vertex u

Namespace:  QuickGraph.Algorithms.Search
Assembly:  QuickGraph.Algorithms (in QuickGraph.Algorithms.dll) Version: 2.4.2.1502 (2.4.2.1502)

Syntax

C#
public void Visit(
	IVertex u,
	int depth
)
Visual Basic (Declaration)
Public Sub Visit ( _
	u As IVertex, _
	depth As Integer _
)

Parameters

u
Type: QuickGraph.Concepts..::.IVertex
vertex to explore
depth
Type: System..::.Int32
current recursion depth

Exceptions

ExceptionCondition
System..::.ArgumentNullExceptionu cannot be null

See Also