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

Converts a 32-bit integer to a string.

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

Parameters

value
The 32-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 | ToInt32