Performs integer division on two Int128 values and returns the remainder.
            
Namespace: SharpAssembler.CoreAssembly: SharpAssembler Core (in SharpAssembler Core.dll) Version: 1.0.0.0 (1.0.0.0)
 Syntax
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
Exceptions
| Exception | Condition | 
|---|---|
| System..::..DivideByZeroException | divisor == 0 | 
 Contracts
Contracts
| Requires | ||
|---|---|---|
| divisor != 0 
 | 





