Click or drag to resize
MvArrayEquals Method
Checks whether two arrays are equal.

Namespace: RW.Server.Component
Assembly: RW.Server.Component (in RW.Server.Component.dll) Version: 6.3.0.0 (0.8.0.0)
Syntax
public override bool Equals(
	Object obj
)

Parameters

obj
Type: SystemObject
The object to compare to.

Return Value

Type: Boolean
true if this instance equals obj.
Remarks
This instance is considered as equal to obj if:
  • The object passed as a parameter is an instance of MvArray.
  • The arrays are equal as defined by the List interface, that is:
    • Both lists have the same size.
    • All corresponding pairs of elements in the two lists are equal. (Two elements e1 and e2 are equal if ((e1 == null) ? e2==null : e1.equals(e2)).)
In other words, two arrays are defined to be equal if they contain the same elements in the same order.
See Also