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

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

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

Cú pháp

Cú pháp như sau -

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

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

Ví dụ

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

using System;
public class Demo {
   public static void Main(){
      byte[] arr = { 10, 20, 30, 40, 50};
      Console.WriteLine("Byte Array = {0} ", BitConverter.ToString(arr));
      for (int i = 1; i < arr.Length - 3; i = i + 4) {
         int res = BitConverter.ToInt32(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 = 0A-14-1E-28-32
Value = 20
Result = 841489940

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, 10, 15, 20, 26, 32, 34, 40};
      Console.WriteLine("Byte Array = {0} ", BitConverter.ToString(arr));
      for (int i = 1; i < arr.Length - 3; i = i + 4) {
         int res = BitConverter.ToInt32(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-0A-0F-14-1A-20-22-28
Value = 0
Result = 336529920
Value = 26
Result = 673325082