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;
Returns a string representation of value in base-10 without leading zeros.
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.
Byte Structure | Byte Members | System Namespace | Byte.ToString Overload List