Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

C# BitConverter.ToSingle() 메서드

<시간/>

C#의 BitConverter.ToSingle() 메서드는 바이트 배열의 지정된 위치에 있는 4바이트에서 변환된 단정밀도 부동 소수점 숫자를 반환하는 데 사용됩니다.

구문

구문은 다음과 같습니다 -

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