Raises a number to the specified power and returns the result as a
BigInteger number.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static BigInteger Pow(
int value,
int exponent
)
Public Shared Function Pow (
value As Integer,
exponent As Integer
) As BigInteger
public:
static BigInteger Pow(
int value,
int exponent
)
static member Pow :
value : int *
exponent : int -> BigInteger
Parameters
- value
- Type: SystemInt32
The base. - exponent
- Type: SystemInt32
The exponent.
Return Value
Type:
BigIntegerA
BigInteger that represents
value raised to the power
exponent.
Reference