此方法用于将指定字节数组的每个元素的数值转换为其等效的十六进制字符串表示形式。
句法:
public static string ToString (byte[] value);
在这里,该值是一个字节数组。
返回值:该方法返回由连字符分隔的十六进制对字符串,其中每个对代表value中的对应元素。例如,“ 6E-1D-9A-00”。
异常:如果字节数组或者您可以说value为null,则此方法将引发ArgumentNullException 。
下面的程序说明了BitConverter.ToString(Byte [])方法的用法:
范例1:
// C# program to demonstrate
// BitConverter.ToString(Byte[]);
// Method
using System;
public class GFG {
// Main Method
public static void Main()
{
try {
// Define an array of byte values.
byte[] array1 = {0, 1, 2, 4, 8, 16,
32, 64, 128, 255};
// Display the values of the myArr.
Console.Write("Initial Array: ");
// calling the PrintIndexAndValues()
// method to print
PrintIndexAndValues(array1);
// Getting hex string of byte values
string value = BitConverter.ToString(array1);
// Display the string
Console.Write("string: ");
Console.Write("{0}", value);
}
catch (ArgumentNullException e) {
Console.Write("Exception Thrown: ");
Console.Write("{0}", e.GetType(), e.Message);
}
}
// Defining the method
// PrintIndexAndValues
public static void PrintIndexAndValues(byte[] myArr)
{
for (int i = 0; i < myArr.Length; i++) {
Console.Write("{0} ", myArr[i]);
}
Console.WriteLine();
Console.WriteLine();
}
}
输出:
Initial Array: 0 1 2 4 8 16 32 64 128 255
string: 00-01-02-04-08-10-20-40-80-FF
示例2:对于ArgumentNullException
// C# program to demonstrate
// BitConverter.ToString(Byte[]);
// Method
using System;
public class GFG {
// Main Method
public static void Main()
{
try {
// Define an array of byte values.
byte[] array1 = null;
// Getting hex string of byte values
string value = BitConverter.ToString(array1);
// Display the string
Console.Write("string: ");
Console.Write("{0}", value);
}
catch (ArgumentNullException e) {
Console.Write("Exception Thrown: ");
Console.Write("{0}", e.GetType(), e.Message);
}
}
}
输出:
Exception Thrown: System.ArgumentNullException
参考:
- https://docs.microsoft.com/zh-cn/dotnet/api/system.bitconverter.tostring?view=netframework-4.7.2#System_BitConverter_ToString_System_Byte___