Divides one Int128 by another and returns the result.
Namespace: SharpAssembler.CoreAssembly: SharpAssembler Core (in SharpAssembler Core.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
| C# |
|---|
public static Int128 Divide( Int128 dividend, Int128 divisor ) |
| Visual Basic |
|---|
Public Shared Function Divide ( _ dividend As Int128, _ divisor As Int128 _ ) As Int128 |
| Visual C++ |
|---|
public: static Int128 Divide( 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 quotient of the division.
Exceptions
| Exception | Condition |
|---|---|
| System..::..DivideByZeroException | divisor == 0 |
Contracts
| Requires | ||
|---|---|---|
divisor != 0
|