Represents a method that determines whether two objects of the same type are equal.

Namespace:  Gallio.Common
Assembly:  Gallio (in Gallio.dll) Version: 3.3.0.0 (3.3.459.0)

Syntax

C#
public delegate bool EqualityComparison(
	Object x,
	Object y
)
Visual Basic (Declaration)
Public Delegate Function EqualityComparison ( _
	x As Object, _
	y As Object _
) As Boolean

Parameters

x
Type: System..::.Object
The first object to compare.
y
Type: System..::.Object
The second object to compare.

Return Value

True if the object are equal; otherwise false.

See Also