NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Math.Pow

Raises a specified number to the specified power.

[Visual Basic]
Public Shared Function Pow( _
   ByVal x As Double, _
   ByVal y As Double _
) As Double
[C#]
public static double Pow(
   double x,
   double y
);
[C++]
public: static double Pow(
   double x,
   double y
);
[JScript]
public static function Pow(
   x : double,
   y : double
) : double;

Parameters

x
The number that will be raised to the power y.
y
The power to which to raise x.

Return Value

Returns x raised to the power y.

See Also

Math Class | Math Members | System Namespace