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!

Byte.ToString (Byte)

Converts a specified Byte to a String and formats without leading zeros.

[Visual Basic]
Overloads Public Shared Function ToString( _
   ByVal value As Byte _
) As String
[C#]
public static string ToString(
   byte value
);
[C++]
public: static String* ToString(
   unsigned char value
);
[JScript]
public static function ToString(
   value : Byte
) : String;

Parameters

value
The unsigned byte to be provided a string representation.

Return Value

Returns a string representation of value in base-10 without leading zeros.

Remarks

The ToString mehtod converts a Byte to a string.

No leading zero characters ('0') are prepended to the returned string. The following characters are allowable digits: 0, 1, 2, 3, 4, 5, 6, 7, 8, and/or 9.

See Also

Byte Structure | Byte Members | System Namespace | Byte.ToString Overload List