Performs integer division on two Int128 values and returns the remainder.

Namespace: SharpAssembler.Core
Assembly: SharpAssembler Core (in SharpAssembler Core.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public static Int128 Remainder(
	Int128 dividend,
	Int128 divisor
)
Visual Basic
Public Shared Function Remainder ( _
	dividend As Int128, _
	divisor As Int128 _
) As Int128
Visual C++
public:
static Int128 Remainder(
	Int128 dividend, 
	Int128 divisor
)

Parameters

dividend
Type: SharpAssembler.Core..::..Int128
The value to be divided.
divisor
Type: SharpAssembler.Core..::..Int128
The value to divide by.

Return Value

The remainder after dividing dividend by divisor.

Exceptions

ExceptionCondition
System..::..DivideByZeroExceptiondivisor == 0

Contracts

See Also