Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/03/16 17:13:50 (8 years ago)
Author:
jlodewyc
Message:

#2582 Parameter changing busy, save file, download file and email on pass reset

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/WebJobManager/HeuristicLab.Data/3.3/DoubleValue.cs

    r13656 r13827  
    4444    public DoubleValue(double value) : base(value) { }
    4545
    46     public override IDeepCloneable Clone(Cloner cloner) {
     46        public static DoubleValue Parse(string val)
     47        {
     48            return new DoubleValue(Double.Parse(val));
     49        }
     50
     51        public override IDeepCloneable Clone(Cloner cloner) {
    4752      return new DoubleValue(this, cloner);
    4853    }
Note: See TracChangeset for help on using the changeset viewer.