///<summary> /// Returns a value indicating whether this instance is equal to a specified object using value semantics. ///</summary> ///<param name="toObject">An object to compare to this instance.</param> ///<returns>true if toObject is a <see cref="TestTimestampBase"/> and has the same value as this instance; otherwise, false.</returns> public virtual bool Equals(TestTimestampBase toObject) { if (toObject == null) { return(false); } return(ValueEquals(this, toObject)); }
/// <summary> /// Initializes a new instance of the TestTimestampKey class. /// </summary> public TestTimestampKey(TestTimestampBase entity) { this.Entity = entity; #region Init Properties if (entity != null) { this.TestTimestampId = entity.TestTimestampId; } #endregion }
///<summary> /// Determines whether the specified <see cref="TestTimestampBase"/> instances are considered equal using value semantics. ///</summary> ///<param name="Object1">The first <see cref="TestTimestampBase"/> to compare.</param> ///<param name="Object2">The second <see cref="TestTimestampBase"/> to compare. </param> ///<returns>true if Object1 is the same instance as Object2 or if both are null references or if objA.Equals(objB) returns true; otherwise, false.</returns> public static bool ValueEquals(TestTimestampBase Object1, TestTimestampBase Object2) { // both are null if (Object1 == null && Object2 == null) { return(true); } // one or the other is null, but not both if (Object1 == null ^ Object2 == null) { return(false); } bool equal = true; if (Object1.TestTimestampId != Object2.TestTimestampId) { equal = false; } if (Object1.DumbField != null && Object2.DumbField != null) { if (Object1.DumbField != Object2.DumbField) { equal = false; } } else if (Object1.DumbField == null ^ Object2.DumbField == null) { equal = false; } if (Object1.Version != Object2.Version) { equal = false; } return(equal); }