Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

BitConverter.ToInt32 () วิธีการใน C #


เมธอด BitConverter.ToInt32() ใน C # ใช้เพื่อส่งคืนจำนวนเต็มที่ลงนามแบบ 32 บิตซึ่งแปลงจากสี่ไบต์ที่ตำแหน่งที่ระบุในอาร์เรย์ไบต์

ไวยากรณ์

ไวยากรณ์มีดังนี้ −

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

ด้านบน val คืออาร์เรย์ไบต์ ในขณะที่ begnIndex เป็นตำแหน่งเริ่มต้นภายใน val

ตัวอย่าง

เรามาดูตัวอย่างกัน −

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);
      }
   }
}

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

Byte Array = 0A-14-1E-28-32
Value = 20
Result = 841489940

ตัวอย่าง

เรามาดูตัวอย่างอื่นกัน −

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);
      }
   }
}

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

Byte Array = 00-00-0A-0F-14-1A-20-22-28
Value = 0
Result = 336529920
Value = 26
Result = 673325082