Reads the byte at this reader's current position
return The byte at the reader's current position
int getByte() { var oneByte = _bytes[_position]; _position++; return oneByte; }