Byte.ToString Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Converts the value of the current Byte object to its equivalent string representation.
Assembly: mscorlib (in mscorlib.dll)
Return Value
Type: System.StringThe string representation of the value of this object, which consists of a sequence of digits that range from 0 to 9 with no leading zeroes.
The return value is formatted with the general numeric format specifier ("G") and the NumberFormatInfo object for the thread current culture. To define the formatting of the Byte value's string representation, call the ToString method. To define both the format specifiers and culture used to create the string representation of a Byte value, call the ToString method.
For information about the thread current culture, see Thread.CurrentCulture.