System.Convert.ToString 方法 (Int64, Int32)

方法描述

将 64 位带符号整数的值转换为其指定基的等效字符串表示形式。

语法定义(C# System.Convert.ToString 方法 (Int64, Int32) 的用法)

public static string ToString(
	long value,
	int toBase
)

参数/返回值

参数值/返回值 参数类型/返回类型 参数描述/返回描述
value System-Int64 要转换的 64 位带符号整数。
toBase System-Int32 返回值的基数,必须是 2、8、10 或 16。
返回值 System.String 以 toBase 为基数的 value 的字符串表示形式。

提示和注释

如果 value 是一个正数并且 toBase 不是 10,则返回的字符串将使用符号和量级表示。 如果 value 是一个负数并且 toBase 不是 10,则返回的字符串将使用 2 的补数表示。 这意味着最高序位字节的高序位(第 63 位)被解释为符号位。 如果调用 ToString(Int64, Int32) 方法来创建随后将被转换回数字的字符串,则应调用采用类似数字表示形式的相应方法以执行转换。 这些方法包括 Convert.ToInt64(String, Int32) 和 Int64.Parse(String, NumberStyles)。

System.Convert.ToString 方法 (Int64, Int32)例子

下面的示例将长整数数组中的每个元素转换为其等效的二进制、十六进制、十进制和十六进制字符串表示形式。

int[] bases = { 2, 8, 10, 16};
long[] numbers = { Int64.MinValue, -193275430, -13621, -18, 12, 
                   1914206117, Int64.MaxValue };

foreach (int baseValue in bases)
{
   Console.WriteLine("Base {0} conversion:", baseValue);
   foreach (long number in numbers)
   {
      Console.WriteLine("   {0,-23}  -->  0x{1}", 
                        number, Convert.ToString(number, baseValue));
   }
}
// The example displays the following output:
//    Base 2 conversion:
//       -9223372036854775808     -->  0x1000000000000000000000000000000000000000000000000000000000000000
//       -193275430               -->  0x1111111111111111111111111111111111110100011110101101100111011010
//       -13621                   -->  0x1111111111111111111111111111111111111111111111111100101011001011
//       -18                      -->  0x1111111111111111111111111111111111111111111111111111111111101110
//       12                       -->  0x1100
//       1914206117               -->  0x1110010000110000111011110100101
//       9223372036854775807      -->  0x111111111111111111111111111111111111111111111111111111111111111
//    Base 8 conversion:
//       -9223372036854775808     -->  0x1000000000000000000000
//       -193275430               -->  0x1777777777776436554732
//       -13621                   -->  0x1777777777777777745313
//       -18                      -->  0x1777777777777777777756
//       12                       -->  0x14
//       1914206117               -->  0x16206073645
//       9223372036854775807      -->  0x777777777777777777777
//    Base 10 conversion:
//       -9223372036854775808     -->  0x-9223372036854775808
//       -193275430               -->  0x-193275430
//       -13621                   -->  0x-13621
//       -18                      -->  0x-18
//       12                       -->  0x12
//       1914206117               -->  0x1914206117
//       9223372036854775807      -->  0x9223372036854775807
//    Base 16 conversion:
//       -9223372036854775808     -->  0x8000000000000000
//       -193275430               -->  0xfffffffff47ad9da
//       -13621                   -->  0xffffffffffffcacb
//       -18                      -->  0xffffffffffffffee
//       12                       -->  0xc
//       1914206117               -->  0x721877a5
//       9223372036854775807      -->  0x7fffffffffffffff

异常

异常 异常描述
ArgumentException toBase 不是 2、8、10 或 16。

命名空间

namespace: System

程序集: mscorlib(在 mscorlib.dll 中)

版本信息

.NET Framework 受以下版本支持:4、3.5、3.0、2.0、1.1、1.0 .NET Framework Client Profile 受以下版本支持:4、3.5 SP1 受以下版本支持:

适用平台

Windows 7, Windows Vista SP1 或更高版本, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008(不支持服务器核心), Windows Server 2008 R2(支持 SP1 或更高版本的服务器核心), Windows Server 2003 SP2 .NET Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。