Changeset 3387 for trunk/sources/HeuristicLab.Common/3.3
- Timestamp:
- 04/18/10 00:54:55 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Common/3.3/DeepCloneable.cs
r3385 r3387 49 49 /// <returns>A clone of this instance.</returns> 50 50 public virtual IDeepCloneable Clone(Cloner cloner) { 51 DeepCloneable clone = (DeepCloneable)Activator.CreateInstance(this.GetType() );51 DeepCloneable clone = (DeepCloneable)Activator.CreateInstance(this.GetType(),true); 52 52 cloner.RegisterClonedObject(this, clone); 53 53 return clone;
Note: See TracChangeset
for help on using the changeset viewer.