Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/25/10 02:34:23 (15 years ago)
Author:
swagner
Message:

Operator architecture refactoring (#95)

  • continued work on adapting and refactoring HeuristicLab.Data according to the changes in HeuristicLab.Core
  • unified visual appearance of views
File:
1 edited

Legend:

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

    r2669 r2676  
    4141    }
    4242
     43    #region IStringConvertibleData Members
     44    bool IStringConvertibleData.Validate(string value) {
     45      int i;
     46      return int.TryParse(value, out i);
     47    }
    4348    string IStringConvertibleData.GetValue() {
    4449      return Value.ToString();
     
    5358      }
    5459    }
     60    #endregion
    5561  }
    5662}
Note: See TracChangeset for help on using the changeset viewer.