- Timestamp:
- 01/18/16 14:06:17 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.DataAnalysis/3.4/Dataset.cs
r13427 r13539 194 194 public int Rows { 195 195 get { return rows; } 196 set { throw new NotSupportedException(); } 197 } 196 } 197 int IStringConvertibleMatrix.Rows { 198 get { return Rows; } 199 set { throw new NotSupportedException(); } 200 } 201 198 202 public int Columns { 199 203 get { return variableNames.Count; } 204 } 205 int IStringConvertibleMatrix.Columns { 206 get { return Columns; } 200 207 set { throw new NotSupportedException(); } 201 208 }
Note: See TracChangeset
for help on using the changeset viewer.