Esempio n. 1
0
 /// <summary>
 /// Load the offset table with a given slot count from the page data
 /// </summary>
 private void LoadOffsetTable(int slotCount)
 {
     for (var i = 2; i <= (slotCount * 2); i += 2)
     {
         OffsetTable.Add(BitConverter.ToUInt16(PageData, PageData.Length - i));
     }
 }