private void buildRecords()
        {
            foreach (rawKeyAndRecord rawRecord in this.rawRecords)
            {
                extentsOverflowIndexRecord currentRecord = new extentsOverflowIndexRecord();

                byte[] keyData = rawRecord.keyData;

                currentRecord.extentKey = extentsOverflowFile.buildExtentSearchKey(ref keyData);
                currentRecord.pointer = dataOperations.convToLE(BitConverter.ToUInt32(rawRecord.recordData, 0));

                records.Add(currentRecord);
            }
        }
        private void buildRecords()
        {
            foreach (rawKeyAndRecord rawRecord in this.rawRecords)
            {
                extentsOverflowIndexRecord currentRecord = new extentsOverflowIndexRecord();

                byte[] keyData = rawRecord.keyData;

                currentRecord.extentKey = extentsOverflowFile.buildExtentSearchKey(ref keyData);
                currentRecord.pointer   = dataOperations.convToLE(BitConverter.ToUInt32(rawRecord.recordData, 0));

                records.Add(currentRecord);
            }
        }