Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/12/10 15:43:08 (14 years ago)
Author:
mkommend
Message:

implemented RowNames property in Dataset (ticket #938)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis/3.3/Dataset.cs

    r3308 r3311  
    288288    }
    289289
     290    IEnumerable<string> IStringConvertibleMatrix.RowNames {
     291      get { return new List<string>(); }
     292      set { throw new NotImplementedException(); }
     293    }
     294
    290295    public bool Validate(string value, out string errorMessage) {
    291296      errorMessage = string.Empty;
Note: See TracChangeset for help on using the changeset viewer.