Returns a specified number raised to the specified power.
Namespace: SystemAssembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax public static double Pow(
double x,
double y
)
Parameters
- x
- Type: SystemDouble
A double-precision floating-point number to be raised to a power. - y
- Type: SystemDouble
A double-precision floating-point number that specifies a power.
Return Value
Type:
DoubleThe number
x raised to the power
y.
See Also