BigInteger::Pow Method
Raises a BigInteger value to the power of a specified value.
Assembly: System.Numerics (in System.Numerics.dll)
Parameters
- value
- Type: System.Numerics::BigInteger
The number to raise to the exponent power.
- exponent
- Type: System::Int32
The exponent to raise value by.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | The value of the exponent parameter is negative. |
The Pow method returns 1 if the value of the exponent parameter is 0, or if the values of both the value and exponent parameters are 0. If exponent is 1, the Pow method returns value. If value is negative, the method returns a negative result.
This method corresponds to the Math::Pow method for primitive numeric types.
The following example illustrates exponentiation using a BigInteger value and an exponent whose value ranges from 0 to 10.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.