Changeset 66
- Timestamp:
- 03/14/08 01:16:03 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Data/ObjectData.cs
r2 r66 50 50 } 51 51 52 public override bool Equals(object obj) { 53 IObjectData other = obj as IObjectData; 54 if (other != null) 55 return Data.Equals(other); 56 else 57 return Data.Equals(obj); 58 } 59 60 public override int GetHashCode() { 61 return Data.GetHashCode(); 62 } 63 52 64 public int CompareTo(object obj) { 53 65 IComparable comparable = Data as IComparable;
Note: See TracChangeset
for help on using the changeset viewer.