Converts the numeric value of this instance to its equivalent string representation using the specified culture-specific format information.
The string representation of the value of this instance, consisting of a sequence of digits ranging from 0 to 9, without a sign or leading zeros.
The ulong.ToString(IFormatProvider) method formats a ulong value in the default ("G", or general) format by using the System.Globalization.NumberFormatInfo object of a specified culture. If you want to specify a different format or the current culture, use the other overloads of the ulong.ToString(string) method, as follows:
Default ("G") format |
Default (current) culture | |
A specific format |
Default (current) culture | |
A specific format |
A specific culture |
The provider parameter is an IFormatProvider implementation. Its IFormatProvider.GetFormat(Type) method returns a System.Globalization.NumberFormatInfo object that provides culture-specific formatting information. However, none of the properties of the System.Globalization.NumberFormatInfo are used when formatting with the general numeric format specifier ("G").