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

.NET Framework Security

See Also

Reference

BigInteger Structure

Microsoft.SolverFoundation.Common Namespace