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

Converts a decimal value to a string.

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

Parameters

value
The decimal value to convert.

Return Value

A string containing the decimal representation of the given value.

See Also

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