 | MathUtilsPow Method (Int32, UInt32) |
Returns the specified number raised to the passed power.
Namespace: Slash.Math.UtilsAssembly: Slash.Math (in Slash.Math.dll) Version: 1.0.6018.40177
Syntaxpublic static int Pow(
int x,
uint pow
)
Public Shared Function Pow (
x As Integer,
pow As UInteger
) As Integer
public:
static int Pow(
int x,
unsigned int pow
)
static member Pow :
x : int *
pow : uint32 -> int
Parameters
- x
- Type: SystemInt32
Number to raise. - pow
- Type: SystemUInt32
Power to raise to.
Return Value
Type:
Int32Specified number raised to the passed power.
See Also