- Timestamp:
- 03/26/14 15:41:30 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/Filter/ComparisonFilter.cs
r10667 r10670 117 117 if (ConstrainedValue.IsType<double>(constraintColumn)) 118 118 { 119 item = ConstrainedValue.GetCell<double>(ConstraintColumn, row);119 item = new StringValue(ConstrainedValue.GetCell<double>(ConstraintColumn, row).ToString()); 120 120 } 121 121 else if (ConstrainedValue.IsType<DateTime>(constraintColumn)) 122 122 { 123 item = ConstrainedValue.GetCell<DateTime>(ConstraintColumn, row);123 item = new StringValue(ConstrainedValue.GetCell<DateTime>(ConstraintColumn, row).ToString()); 124 124 } 125 125 else 126 126 { 127 item = ConstrainedValue.GetCell<string>(ConstraintColumn, row);127 item = new StringValue(ConstrainedValue.GetCell<string>(ConstraintColumn, row)); 128 128 } 129 129
Note: See TracChangeset
for help on using the changeset viewer.