Compare two objects.
Namespace:
NetQuarry
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public static int ObjCompare(
Object o1,
Object o2
)
Public Shared Function ObjCompare (
o1 As Object,
o2 As Object
) As Integer
Parameters
- o1
- Type: SystemObject
The first object to compare. - o2
- Type: SystemObject
The second object to compare.
Return Value
Type:
Int32-1 if o1 less than o2, else 1 if o2 less than o1, else zero.
Remarks
Empty strings are considered equivalent to null values.
See Also