BitConverter.ToBoolean returns a Boolean value converted from one byte at a specified position in a byte array.
Imports System
Imports Microsoft.VisualBasic
Module BytesToBoolDemo
Sub BAToBool( bytes( ) As Byte, index As Integer )
Dim value As Boolean = BitConverter.ToBoolean( bytes, index )
Console.WriteLine( value )
End Sub
Sub Main( )
Dim byteArray as Byte( ) = { 0, 1, 2, 4, 8, 16, 32, 64, 128, 255 }
BAToBool( byteArray, 0 )
End Sub
End Module
Related examples in the same category