/// <summary>
 /// Writes null to the file as one 0x00 byte
 /// </summary>
 /// <returns>Number of bytes used to store the null</returns>
 public int WriteNull()
 {
     byteBuffer[0] = 0x00;
     return(fileStream.WriteData(byteBuffer, 1));
 }