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

C # BitConverter.ToUInt32 () วิธีการ


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

ไวยากรณ์

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

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

ตัวอย่าง

using System;
public class Demo {
   public static void Main() {
      byte[] arr = { 0, 3, 5, 10, 15, 2};
      int count = arr.Length;
      Console.Write("Byte Array... ");
      for (int i = 0; i < count; i++) {
         Console.Write("\n"+arr[i]);
      }
      Console.WriteLine("\n\nByte Array (String representation) = {0} ",
      BitConverter.ToString(arr));
      for (int i = 1; i < arr.Length - 1; i = i + 4) {
         uint res = BitConverter.ToUInt32(arr, i);
         Console.WriteLine("\nValue = "+arr[i]);
         Console.WriteLine("Result = "+res);
      }
   }
}

ผลลัพธ์

Byte Array...
0
3
5
10
15
2
Byte Array (String representation) = 00-03-05-0A-0F-02
Value = 3
Result = 252314883

ตัวอย่าง

using System;
public class Demo {
   public static void Main() {
      byte[] arr = { 0, 0, 1, 3, 5, 7, 9, 11, 15 };
      int count = arr.Length;
      Console.Write("Byte Array... ");
      for (int i = 0; i < count; i++) {
         Console.Write("\n"+arr[i]);
      }
      Console.WriteLine("\n\nByte Array (String representation) = {0} ",
      BitConverter.ToString(arr));
      for (int i = 1; i < arr.Length - 1; i = i + 4) {
         uint res = BitConverter.ToUInt32(arr, i);
         Console.WriteLine("\nValue = "+arr[i]);
         Console.WriteLine("Result = "+res);
      }
   }
}

ผลลัพธ์

Byte Array...
0
0
1
3
5
7
9
11
15
Byte Array (String representation) = 00-00-01-03-05-07-09-0B-0F
Value = 0
Result = 84082944
Value = 7
Result = 252381447