Operators.CompareObject(Object, Object, Boolean) Method

Definition

Represents Visual Basic comparison operators.

This API supports the product infrastructure and is not intended to be used directly from your code.

public:
 static int CompareObject(System::Object ^ Left, System::Object ^ Right, bool TextCompare);
public static int CompareObject (object Left, object Right, bool TextCompare);
static member CompareObject : obj * obj * bool -> int
Public Shared Function CompareObject (Left As Object, Right As Object, TextCompare As Boolean) As Integer

Parameters

Left
Object

Required. Any expression.

Right
Object

Required. Any expression.

TextCompare
Boolean

Required. True to perform a case-insensitive string comparison; otherwise, False.

Returns

Value Condition
-1 Left is less than Right.
0 Left and Right are equal.
1 Left is greater than Right.

Remarks

This class supports the Visual Basic compiler and is not intended to be used directly from your code.

Applies to

See also