Rogue Wave Server Component library for .NET Reference Guide
|
|
MvArrayEquals Method |
Checks whether two arrays are equal.
Namespace: RW.Server.Component
Assembly: RW.Server.Component (in RW.Server.Component.dll) Version: 7.0.0.0 (7.0.0.0)
Parameters
- obj
- Type: SystemObject
The object to compare to.
Return Value
Type: Booleantrue if this instance equals obj.
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)).)