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/IStringConvertibleMatrix.cs

    r3048 r3308  
    2222using System;
    2323using HeuristicLab.Common;
     24using System.Collections.Generic;
    2425
    2526namespace HeuristicLab.Data {
     
    2728    int Rows { get; set; }
    2829    int Columns { get; set; }
     30
     31    IEnumerable<string> ColumnNames { get; set; }
     32    //bool SortableView { get; }
    2933
    3034    bool Validate(string value, out string errorMessage);
Note: See TracChangeset for help on using the changeset viewer.