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