此方法用于将指定字节数组的每个元素的数值转换为其等效的十六进制字符串表示形式。
用法:
public static string ToString (byte[] 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
参考:
相关用法
- C# Dictionary.Add()用法及代码示例
- C# Math.Max()用法及代码示例
- C# Math.Min()用法及代码示例
- C# Decimal.Add()用法及代码示例
- C# Math.Tan()用法及代码示例
- C# Math.Cos()用法及代码示例
- C# Math.Sin()用法及代码示例
- C# SortedDictionary.Add()用法及代码示例
- C# Math.Abs()方法用法及代码示例
- C# String.Contains()用法及代码示例
- C# Math.Exp()用法及代码示例
注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 C# | BitConverter.ToString(Byte[]) Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。