Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Determines whether the value of one object is greater than another object.
Namespace: System.Data.Services.Providers
Assembly: Microsoft.Data.Services (in Microsoft.Data.Services.dll)
Syntax
'Declaration
Public Shared Function GreaterThan ( _
left As Object, _
right As Object _
) As Object
'Usage
Dim left As Object
Dim right As Object
Dim returnValue As Object
returnValue = OpenTypeMethods.GreaterThan(left, _
right)
public static Object GreaterThan(
Object left,
Object right
)
public:
static Object^ GreaterThan(
Object^ left,
Object^ right
)
static member GreaterThan :
left:Object *
right:Object -> Object
public static function GreaterThan(
left : Object,
right : Object
) : Object
Parameters
- left
Type: System.Object
The first value.
- right
Type: System.Object
The second value.
Return Value
Type: System.Object
true if the value of the first object is greater than that of the second object; otherwise, false.