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

                byte[] recordData = rawRecord.recordData;

                currentRecord.attrKey = attributesFile.buildAttrTrialKey(rawRecord);

                currentRecord.pointer = dataOperations.convToLE(BitConverter.ToUInt32(recordData, 0));

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

                byte[] recordData = rawRecord.recordData;

                currentRecord.attrKey = attributesFile.buildAttrTrialKey(rawRecord);

                currentRecord.pointer = dataOperations.convToLE(BitConverter.ToUInt32(recordData, 0));

                records.Add(currentRecord);
            }
        }