Determines whether the specified objects are equal.

Namespace:  MbUnit.Framework
Assembly:  MbUnit (in MbUnit.dll) Version: 3.3.0.0 (3.3.610.0)

Syntax

C#
public bool Equals(
	T x,
	T y
)
Visual Basic (Declaration)
Public Function Equals ( _
	x As T, _
	y As T _
) As Boolean

Parameters

x
Type: T
The first object of type T to compare.
y
Type: T
The second object of type T to compare.

Return Value

true if the specified objects are equal; otherwise, false.

Implements

IEqualityComparer<(Of <(T>)>)..::.Equals(T, T)

See Also