Divides one System.Numerics.BigInteger value by another, returns the result, and returns the remainder in an output parameter.
Namespace: Renci.SshNet.CommonAssembly: Renci.SshNet (in Renci.SshNet.dll) Version: 0.1.0.0 (1.0.0.0)
Syntax
public static BigInteger DivRem( BigInteger dividend, BigInteger divisor, out BigInteger remainder )
Parameters
- dividend
- Type: Renci.SshNet.Common BigInteger
The value to be divided.
- divisor
- Type: Renci.SshNet.Common BigInteger
The value to divide by.
- remainder
- Type: Renci.SshNet.Common BigInteger
When this method returns, contains a System.Numerics.BigInteger value that represents the remainder from the division. This parameter is passed uninitialized.
Return Value
The quotient of the division.See Also