Returns the remainder that results from division with two specified Int128 values.

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

Syntax

C#
public static Int128 operator %(
	Int128 dividend,
	Int128 divisor
)
Visual Basic
Public Shared Operator Mod ( _
	dividend As Int128, _
	divisor As Int128 _
) As Int128
Visual C++
public:
static Int128 operator %(
	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 that results from the division.

Exceptions

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

Contracts

See Also