Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/12/10 14:14:39 (14 years ago)
Author:
mkommend
Message:

added ColumnNames property in IStringConvertibleMatrix and in classes implementing this interface (ticket #968)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Data/3.3/BoolMatrix.cs

    r3160 r3308  
    2020#endregion
    2121
     22using System.Collections.Generic;
    2223using System.Text;
    2324using HeuristicLab.Core;
     
    7374      set { Columns = value; }
    7475    }
     76    IEnumerable<string> IStringConvertibleMatrix.ColumnNames {
     77      get { return this.ColumnNames; }
     78      set { this.ColumnNames = value; }
     79    }
    7580    bool IStringConvertibleMatrix.Validate(string value, out string errorMessage) {
    7681      return Validate(value, out errorMessage);
Note: See TracChangeset for help on using the changeset viewer.