private ushort ReadUInt16(EntryOffsets fromOffset) { return(EndianHelper.Swap(this.indexView.ReadUInt16(this.Offset + (long)fromOffset))); }
private void WriteUInt16(EntryOffsets fromOffset, ushort data) { this.indexView.Write(this.Offset + (long)fromOffset, EndianHelper.Swap(data)); }
private uint ReadUInt32(EntryOffsets fromOffset) { return EndianHelper.Swap(this.indexView.ReadUInt32(this.Offset + (long)fromOffset)); }