BigInteger.Power Method (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.

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 _
) As BigInteger
public static BigInteger Power(
    BigInteger bnBase,
    BigInteger bnExp
)
public:
static BigInteger Power(
    BigInteger bnBase, 
    BigInteger bnExp
)
static member Power : 
        bnBase:BigInteger * 
        bnExp:BigInteger -> BigInteger 
public static function Power(
    bnBase : BigInteger, 
    bnExp : BigInteger
) : BigInteger

Parameters

Return Value

Type: Microsoft.SolverFoundation.Common.BigInteger
The result of raising bnBase to the bnExp power.

.NET Framework Security

See Also

Reference

BigInteger Structure

Power Overload

Microsoft.SolverFoundation.Common Namespace