เมธอด BitConverter.ToSingle() ใน C # ใช้เพื่อส่งคืนตัวเลขทศนิยมแบบแม่นยำเดียวที่แปลงจากสี่ไบต์ที่ตำแหน่งที่ระบุในอาร์เรย์ไบต์
ไวยากรณ์
ไวยากรณ์มีดังนี้ −
public static float ToSingle (byte[] value, int begnIndex);
ด้านบน val คืออาร์เรย์ไบต์ ในขณะที่ begnIndex เป็นตำแหน่งเริ่มต้นภายใน val
ตัวอย่าง
เรามาดูตัวอย่างกัน −
using System; public class Demo { public static void Main() { byte[] arr = {0, 1, 2, 3, 5, 7, 10}; Console.WriteLine("Byte Array = {0} ", BitConverter.ToString(arr)); for (int i = 0; i < arr.Length - 4; i = i + 4) { float res = BitConverter.ToSingle(arr, i); Console.WriteLine("\nValue = "+arr[i]); Console.WriteLine("Result = "+res); } } }
ผลลัพธ์
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -
Byte Array = 00-01-02-03-05-07-0A Value = 0 Result = 3.820471E-37
ตัวอย่าง
เรามาดูตัวอย่างอื่นกัน −
using System; public class Demo { public static void Main() { byte[] arr = {0, 10, 2, 5, 32, 45, 0, 0, 9, 20, 30, 50, 76, 88}; Console.WriteLine("Byte Array = {0} ", BitConverter.ToString(arr)); for (int i = 0; i < arr.Length - 4; i = i + 4) { float res = BitConverter.ToSingle(arr, i); Console.WriteLine("\nValue = "+arr[i]); Console.WriteLine("Result = "+res); } } }
ผลลัพธ์
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -
Byte Array = 00-0A-02-05-20-2D-00-00-09-14-1E-32-4C-58 Value = 0 Result = 6.114407E-36 Value = 32 Result = 1.61878E-41 Value = 9 Result = 9.201366E-09