Converts the value of the current byte object to its equivalent string representation using the specified format and culture-specific formatting information.
The string representation of the current byte object, formatted as specified by the format and provider parameters.
Type Reason FormatException format is invalid.
The byte.ToString(string, IFormatProvider) method formats a byte value in a specified format of a specified culture. To format a number by using the default ("G") format of the current culture, call the byte.ToString method. To format a number by using a specified format of the current culture, call the byte.ToString(string) method.
The format parameter can be either a standard or a custom numeric format string. All standard numeric format strings other than "R" (or "r") are supported, as are all custom numeric format characters. If format is null or an empty string (""), the return value of this method is formatted with the general numeric format specifier ("G").
The provider parameter is an object that implements the IFormatProvider interface. Its IFormatProvider.GetFormat(Type) method returns a System.Globalization.NumberFormatInfo object that provides culture-specific information about the format of the string that is returned by this method. The object that implements IFormatProvider can be any of the following:
A System.Globalization.CultureInfo object that represents the culture whose formatting rules are to be used.
A System.Globalization.NumberFormatInfo object that contains specific numeric formatting information for this value.
A custom object that implements IFormatProvider.
If provider is null or a System.Globalization.NumberFormatInfo object cannot be obtained from provider, the return value is formatted using the System.Globalization.NumberFormatInfo object for the thread current culture. For information about the thread current culture, see System.Threading.Thread.CurrentCulture.
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.