Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/02/12 14:48:20 (12 years ago)
Author:
mkommend
Message:

#1908: Updated SplitDictionaryStyleDataCommand to allow splitting multiple columns. Additionally made minor code improvements in the DataImporter.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Data/Command/DeleteColumnCommand.cs

    r7625 r8387  
    2020#endregion
    2121
    22 using System;
    2322using System.Collections.Generic;
    2423using System.Linq;
    25 using System.Text;
    2624using System.Windows.Forms;
    2725using HeuristicLab.DataImporter.Data.CommandBase;
     
    5149
    5250      ColumnBase column;
    53       foreach (int columnIndex in AffectedColumns.Reverse()) {
     51      foreach (int columnIndex in AffectedColumns.OrderByDescending(i => i)) {
    5452        column = ColumnGroup.GetColumn(columnIndex);
    5553        deletedColumns.Insert(0, column);
Note: See TracChangeset for help on using the changeset viewer.