// Token: 0x06000026 RID: 38 RVA: 0x000024C4 File Offset: 0x000006C4 public byte[] ReadLZSS(uint expectedSize, bool inPAA = false) { if (expectedSize < 1024u && !inPAA) { return(this.ReadBytes((int)expectedSize)); } byte[] result = new byte[expectedSize]; LZSS.readLZSS(this.BaseStream, out result, expectedSize, inPAA); return(result); }