Changeset 6736 for branches/HeuristicLab.DataImporter
- Timestamp:
- 09/12/11 09:11:10 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Data/Command/SortCommand.cs
r6134 r6736 71 71 72 72 RowComparer rowComparer = new RowComparer(ColumnGroup, sortColumnIndex); 73 indices = Enumerable.Range(0, ColumnGroup.RowCount).ToArray(); 74 Array.Sort(indices, rowComparer); 73 indices = Enumerable.Range(0, ColumnGroup.RowCount).OrderBy(k => k, rowComparer).ToArray(); 75 74 76 75 List<ColumnBase> newColumns = Sort();
Note: See TracChangeset
for help on using the changeset viewer.