當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C# BitConverter.ToString(Byte[])用法及代碼示例


此方法用於將指定字節數組的每個元素的數值轉換為其等效的十六進製字符串表示形式。

用法:

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

參考:




相關用法


注:本文由純淨天空篩選整理自RohitPrasad3大神的英文原創作品 C# | BitConverter.ToString(Byte[]) Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。