Byte.ToString Method ()
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.
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 in the .NET Framework.
For information about the thread current culture, see Thread.CurrentCulture.
The following example displays an array of byte values. Note that the ToString() method is not called explicitly in the example. Instead, it is called implicitly, because of the use of the composite formatting feature.
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1