[This is preliminary documentation and is subject to change.]

Exponentiation for two ulongs, resulting in a BigInt.

Namespace:  BigNum
Assembly:  BigNum (in BigNum)
Version: 1.0.0.0

Syntax

C#
public static BigInt Pow(
	ulong bas,
	ulong exp
)
Visual Basic (Declaration)
Public Shared Function Pow ( _
	bas As ULong, _
	exp As ULong _
) As BigInt
Visual C++
public:
static BigInt^ Pow(
	unsigned long long bas, 
	unsigned long long exp
)

Parameters

bas
Type: System..::.UInt64
The base.
exp
Type: System..::.UInt64
The power to raise the base to.

Return Value

The specified base raised to the specified power.

See Also