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.
Calculates the arithmetic remainder of dividing one value by a second value.
Namespace: System.Data.Services.Providers
Assembly: Microsoft.Data.Services (in Microsoft.Data.Services.dll)
Syntax
'Declaration
Public Shared Function Modulo ( _
left As Object, _
right As Object _
) As Object
'Usage
Dim left As Object
Dim right As Object
Dim returnValue As Object
returnValue = OpenTypeMethods.Modulo(left, right)
public static Object Modulo(
Object left,
Object right
)
public:
static Object^ Modulo(
Object^ left,
Object^ right
)
static member Modulo :
left:Object *
right:Object -> Object
public static function Modulo(
left : Object,
right : Object
) : Object
Parameters
- left
Type: System.Object
The first value (dividend).
- right
Type: System.Object
The second value (divisor).
Return Value
Type: System.Object
The remainder value.