System.Byte.ToString Method

Converts the value of the current byte object to its equivalent string representation.

Syntax

public override string ToString ()

Returns

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.

Remarks

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 information about the thread current culture, see System.Threading.Thread.CurrentCulture.

Requirements

Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0, 4.0.0.0