Computer >> Máy Tính >  >> Lập trình >> C#

Phương thức C # BitConverter.ToInt64 ()

Phương thức BitConverter.ToInt64 () trong C # được sử dụng để trả về số nguyên có dấu 64 bit được chuyển đổi từ tám byte tại một vị trí được chỉ định trong mảng byte.

Cú pháp

Cú pháp như sau -

public static long ToInt64 (byte[] val, int begnIndex);

Ở trên, val là mảng byte, trong khi đó, seeknIndex là vị trí bắt đầu trong val.

Bây giờ chúng ta hãy xem một ví dụ -

Ví dụ

using System;
public class Demo {
   public static void Main() {
      byte[] arr = { 0, 10, 15, 20, 26, 30, 34, 42, 50};
      Console.WriteLine("Byte Array = {0} ", BitConverter.ToString(arr));
      for (int i = 0; i < arr.Length - 7; i = i + 8) {
         long res = BitConverter.ToInt64(arr, i);
         Console.WriteLine("\nValue = "+arr[i]);
         Console.WriteLine("Result = "+res);
      }
   }
}

Đầu ra

Điều này sẽ tạo ra kết quả sau -

Byte Array = 00-0A-0F-14-1A-1E-22-2A-32
Value = 0
Result = 3036022196155648512

Ví dụ

Bây giờ chúng ta hãy xem một ví dụ khác -

using System;
public class Demo {
   public static void Main() {
      byte[] arr = {0, 0, 0, 10, 20, 0, 0, 25, 30, 0, 0, 0, 35, 45, 55, 65, 75};
      Console.WriteLine("Byte Array = {0} ",
      BitConverter.ToString(arr));
      for (int i = 0; i < arr.Length - 7; i = i + 8) {
         long res = BitConverter.ToInt64(arr, i);
         Console.WriteLine("\nValue = "+arr[i]);
         Console.WriteLine("Result = "+res);
      }
   }
}

Đầu ra

Điều này sẽ tạo ra kết quả sau -

Byte Array = 00-00-00-0A-14-00-00-19-1E-00-00-00-23-2D-37-41-4B
Value = 0
Result = 1801439937015316480
Value = 30
Result = 4699274364531507230