C# 中的 BitConverter.ToBoolean() 方法
C# 中的 BitConverter.ToBoolean() 方法可返回一个布尔值,该值是由字节数组中指定位置的字节转换而来。
语法
以下为语法 −
public static bool ToBoolean (byte[] arr, int startIndex);
其中,arr 是一个字节数组,而 startIndex 是一个值中字节的索引。
示例
现在让我们看一个示例来实现 BitConverter.ToBoolean() 方法−
using System; public class Demo { public static void Main(){ byte[] arr = { 50, 100 }; Console.WriteLine("Array values..."); for (int i = 0; i < arr.Length; i++) { Console.WriteLine("{0} ", arr[i]); } Console.WriteLine("
Converted values..."); for (int index = 0; index < arr.Length; index++) { bool res = BitConverter.ToBoolean(arr, index); Console.WriteLine(""+res); } } }
输出
将产生以下输出 −
Array values... 50 100 Converted values... True True
广告