BigInteger.Power Method (BigInteger, BigInteger, BigInteger%)

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Raises a big integer to the power of a big integer, and stores the result.

Namespace:  Microsoft.SolverFoundation.Common
Assembly:  Microsoft.Solver.Foundation (in Microsoft.Solver.Foundation.dll)

Syntax

'Declaration
Public Shared Function Power ( _
    bnBase As BigInteger, _
    bnExp As BigInteger, _
    <OutAttribute> ByRef bnRes As BigInteger _
) As Boolean
public static bool Power(
    BigInteger bnBase,
    BigInteger bnExp,
    out BigInteger bnRes
)
public:
static bool Power(
    BigInteger bnBase, 
    BigInteger bnExp, 
    [OutAttribute] BigInteger% bnRes
)
static member Power : 
        bnBase:BigInteger * 
        bnExp:BigInteger * 
        bnRes:BigInteger byref -> bool 
public static function Power(
    bnBase : BigInteger, 
    bnExp : BigInteger, 
    bnRes : BigInteger
) : boolean

Parameters

Return Value

Type: System.Boolean
true if the result of raising bnBase to the bnExp power is computed and stored as a BigInteger value; otherwise, false.

.NET Framework Security

See Also

Reference

BigInteger Structure

Power Overload

Microsoft.SolverFoundation.Common Namespace