private TagNode ReadByte() { int gzByte = _stream.ReadByte(); if (gzByte == -1) { throw new NBTException(NBTException.MSG_GZIP_ENDOFSTREAM); } TagNodeByte val = new TagNodeByte((byte)gzByte); return(val); }
private void WriteByte(TagNodeByte val) { _stream.WriteByte(val.Data); }