BigInteger.DivModOne Method
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Divides two big integers.
This API is not CLS-compliant. The CLS-compliant alternative is .
Namespace: Microsoft.SolverFoundation.Common
Assembly: Microsoft.Solver.Foundation (in Microsoft.Solver.Foundation.dll)
Syntax
'Declaration
<CLSCompliantAttribute(False)> _
Public Shared Sub DivModOne ( _
bnNum As BigInteger, _
uDen As UInteger, _
<OutAttribute> ByRef bnQuo As BigInteger, _
<OutAttribute> ByRef bnRem As BigInteger _
)
[CLSCompliantAttribute(false)]
public static void DivModOne(
BigInteger bnNum,
uint uDen,
out BigInteger bnQuo,
out BigInteger bnRem
)
[CLSCompliantAttribute(false)]
public:
static void DivModOne(
BigInteger bnNum,
unsigned int uDen,
[OutAttribute] BigInteger% bnQuo,
[OutAttribute] BigInteger% bnRem
)
[<CLSCompliantAttribute(false)>]
static member DivModOne :
bnNum:BigInteger *
uDen:uint32 *
bnQuo:BigInteger byref *
bnRem:BigInteger byref -> unit
public static function DivModOne(
bnNum : BigInteger,
uDen : uint,
bnQuo : BigInteger,
bnRem : BigInteger
)
Parameters
- bnNum
Type: Microsoft.SolverFoundation.Common.BigInteger
The number to divide.
- uDen
Type: System.UInt32
The number to divide by.
- bnQuo
Type: Microsoft.SolverFoundation.Common.BigInteger%
The quotient after division.
- bnRem
Type: Microsoft.SolverFoundation.Common.BigInteger%
The remainder after division.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.