Changeset 10613 for branches/DataPreprocessing
- Timestamp:
- 03/19/14 10:49:24 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/StatisticsLogic.cs
r10586 r10613 183 183 private DateTime GetSecondsAsDateTime(double seconds) { 184 184 DateTime dateTime = new DateTime(); 185 return dateTime.Add (new TimeSpan(0, 0, (int)seconds));185 return dateTime.AddSeconds(seconds); 186 186 } 187 187
Note: See TracChangeset
for help on using the changeset viewer.