- Timestamp:
- 11/27/13 16:34:23 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IPreprocessingData.cs
r10163 r10165 27 27 28 28 public interface IPreprocessingData : INamedItem { 29 T GetCell<T>(int columnIndex, int rowIndex);30 void SetCell<T>(int columnIndex, int rowIndex, T value);29 T GetCell<T>(int rowIndex, int columnIndex); 30 void SetCell<T>(int rowIndex, int columnIndex, T value); 31 31 32 32 IList<T> GetValues<T>(int columnIndex);
Note: See TracChangeset
for help on using the changeset viewer.