Changeset 14711 for branches/PersistenceOverhaul/HeuristicLab.Optimization/3.3/RunCollectionModification/Calculator.cs
- Timestamp:
- 03/03/17 11:41:43 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceOverhaul/HeuristicLab.Optimization/3.3/RunCollectionModification/Calculator.cs
r13368 r14711 33 33 namespace HeuristicLab.Optimization { 34 34 35 [Storable Class("9E68B940-C444-4961-8B4B-A8C021E7FCBA")]35 [StorableType("9E68B940-C444-4961-8B4B-A8C021E7FCBA")] 36 36 public class Calculator : IDeepCloneable { 37 37 … … 214 214 if (array is StringArray) 215 215 return ((StringArray)array)[index]; 216 throw new NotSupportedException(string.Format(" Type{0} is not a supported array type", array.GetType().Name));216 throw new NotSupportedException(string.Format("MemberSelection {0} is not a supported array type", array.GetType().Name)); 217 217 } 218 218 #endregion
Note: See TracChangeset
for help on using the changeset viewer.