Convert.ToString Method (Int64, IFormatProvider)
Converts the value of the specified 64-bit signed integer to its equivalent string representation, using the specified culture-specific formatting information.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- value
- Type: System.Int64
The 64-bit signed integer to convert.
- provider
- Type: System.IFormatProvider
An object that supplies culture-specific formatting information.
This implementation is identical to Int64.ToString(IFormatProvider).
The following example defines a custom NumberFormatInfo class that defines its negative sign as the string "~" and its positive sign as the string "!". It then calls the ToString(Int64, IFormatProvider) method to convert each element in a long integer array to its equivalent string representation. The conversion uses the invariant culture as well as the custom NumberFormatInfo object.
long[] numbers = { ((long) Int32.MinValue) * 2, ((long) Int32.MaxValue) * 2}; System.Globalization.NumberFormatInfo nfi = new System.Globalization.NumberFormatInfo(); nfi.NegativeSign = "~"; nfi.PositiveSign = "!"; foreach (long number in numbers) Console.WriteLine("{0,-12} --> {1,12}", Convert.ToString(number, System.Globalization.CultureInfo.InvariantCulture), Convert.ToString(number, nfi)); // The example displays the following output: // -4294967296 --> ~4294967296 // 4294967294 --> 4294967294
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC, Xbox 360, Zune
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.