Checks this structure and another structure for equality.

Namespace: TreeLayoutHelper
Assembly: TreeLayoutHelper (in TreeLayoutHelper.dll) Version: 1.1.0.0 (1.1.0.0)

Syntax

C#
public bool Equals(
	NodeWithBounds<TNode> other
)
Visual Basic
Public Function Equals ( _
	other As NodeWithBounds(Of TNode) _
) As Boolean
Visual C++
public:
virtual bool Equals(
	NodeWithBounds<TNode> other
) sealed
J#
public final boolean Equals(
	NodeWithBounds<TNode> other
)
JScript
public final function Equals(
	other : NodeWithBounds<TNode>
) : boolean
JavaScript
function Equals(other);

Parameters

other
Type: TreeLayoutHelper..::..NodeWithBounds<(Of <(<'TNode>)>)>
The other structure.

Return Value

A value that indicates whether other is equal to this structure.

Implements

IEquatable<(Of <(<'T>)>)>..::..Equals(T)

See Also