Equals Method (Object[], Object[])

Fabrica Bolos GLPK

Collapse imageExpand ImageCopy imageCopyHover image
Determines whether the specified objects are equal.

Namespace: Common
Assembly: Optimization.Framework (in Optimization.Framework.dll) Version: 0.3.1036.0

Syntax

C#
public bool Equals(
	Object[] x,
	Object[] y
)
Visual Basic
Public Function Equals ( _
	x As Object(), _
	y As Object() _
) As Boolean
Visual C++
public:
virtual bool Equals(
	array<Object^>^ x, 
	array<Object^>^ y
) sealed

Parameters

x
Type: array<System..::..Object>[]()[][]
The first object of type T to compare.
y
Type: array<System..::..Object>[]()[][]
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