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.Log10

Returns the base 10 logarithm of a specified number.

[Visual Basic]
Public Shared Function Log10( _
   ByVal d As Double _
) As Double
[C#]
public static double Log10(
   double d
);
[C++]
public: static double Log10(
   double d
);
[JScript]
public static function Log10(
   d : double
) : double;

Parameters

d
The number for which to find the base 10 logarithm.

Return Value

Returns the base 10 log of d: log

See Also

Math Class | Math Members | System Namespace