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

Converts a 64-bit integer to a string.

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

Parameters

value
The 64-bit integer value to convert.

Return Value

A string containing the decimal representation of the given value.

See Also

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