/// <summary>
 /// Reads the boolean.
 /// </summary>
 /// <returns>The resulting boolean</returns>
 public bool ReadBoolean()
 {
     ReadInternal(buffer, 1);
     return(EndianBitConverterBase.ToBoolean(buffer, 0));
 }