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!

XmlString.FromDouble

Converts an IEEE 64-bit floating point value to a String.

[Visual Basic]
Public Shared Function FromDouble( _
   ByVal value As Double _
) As String
[C#]
public static string FromDouble(
   double value
);
[C++]
public: static String* FromDouble(
   double value
);
[JScript]
public static function FromDouble(
   value : double
) : String;

Parameters

value
The IEEE 64-bit floating point value to convert.

Return Value

A string containing the decimal representation of the given value.

See Also

XmlString Class | XmlString Members | System.Xml Namespace | ToDouble