OpenStory.Common.IO.LittleEndianBitConverter.ToBoolean C# (CSharp) Method

ToBoolean() public static method

Constructs a System.Boolean from a byte at a given offset in a byte array.
public static ToBoolean ( byte array, int startIndex ) : bool
array byte The array with the byte to use.
startIndex int The offset of the byte.
return bool
        public static bool ToBoolean(byte[] array, int startIndex)
        {
            return BitConverter.ToBoolean(array, startIndex);
        }