- Timestamp:
- 03/22/11 16:45:46 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataAnalysis Refactoring/HeuristicLab.Parameters/3.3/ScopeParameter.cs
r5445 r5796 41 41 public ScopeParameter() 42 42 : base("Anonymous", typeof(IScope)) { 43 this.Hidden = true; 43 44 } 44 45 public ScopeParameter(string name) 45 46 : base(name, typeof(IScope)) { 47 this.Hidden = true; 46 48 } 47 49 public ScopeParameter(string name, string description) 48 50 : base(name, description, typeof(IScope)) { 51 this.Hidden = true; 49 52 } 50 53
Note: See TracChangeset
for help on using the changeset viewer.