Click or drag to resize
MathPow Method
Returns a specified number raised to the specified power.

Namespace: System
Assembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax
C#
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: Double
The number x raised to the power y.
See Also