Gets a value indicating if exist link between two nodes with the specified identifier.

Namespace: Tsp
Assembly: Tsp (in Tsp.exe) Versión: 1.0.0.0 (1.0.0.0)

Syntax

C#
public bool ExistLink(
	int id1,
	int id2
)
Visual Basic
Public Function ExistLink ( _
	id1 As Integer, _
	id2 As Integer _
) As Boolean
Visual C++
public:
bool ExistLink(
	int id1, 
	int id2
)

Parameters

id1
Type: System..::..Int32
The first identifier.
id2
Type: System..::..Int32
The second identifier.

Return Value

True if exist link. False otherwise.

See Also