Changeset 2188
- Timestamp:
- 6/18/2010 11:54:53 AM (2 years ago)
- File:
-
- 1 edited
-
trunk/eraser/Eraser.Util/PhysicalDriveInfo.cs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/eraser/Eraser.Util/PhysicalDriveInfo.cs
r2187 r2188 189 189 } 190 190 191 public override bool Equals(object obj) 192 { 193 PhysicalDriveInfo info = obj as PhysicalDriveInfo; 194 if (info == null) 195 return base.Equals(obj); 196 197 return Index == info.Index; 198 } 199 200 public override int GetHashCode() 201 { 202 return Index.GetHashCode(); 203 } 204 191 205 /// <summary> 192 206 /// The format string for accessing partitions.
Note: See TracChangeset
for help on using the changeset viewer.
