Converts the value of the current byte object to its equivalent string representation.
The 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 System.Globalization.NumberFormatInfo object for the thread current culture. To define the formatting of the byte value's string representation, call the byte.ToString(string) method. To define both the format specifiers and culture used to create the string representation of a byte value, call the byte.ToString(string, IFormatProvider) method.
The .NET Framework provides extensive formatting support, which is described in greater detail in the following formatting topics:
For more information about numeric format specifiers, see Standard Numeric Format Strings and Custom Numeric Format Strings.
For more information about formatting, see Formatting Types.
For information about the thread current culture, see System.Threading.Thread.CurrentCulture.