Beispiel #1
0
 ///<summary>
 /// Returns a value indicating whether this instance is equal to a specified object.
 ///</summary>
 ///<param name="toObject">An object to compare to this instance.</param>
 ///<returns>true if toObject is a <see cref="VwEvlUserBase"/> and has the same value as this instance; otherwise, false.</returns>
 public virtual bool Equals(VwEvlUserBase toObject)
 {
     if (toObject == null)
     {
         return(false);
     }
     return(Equals(this, toObject));
 }
Beispiel #2
0
        ///<summary>
        /// Determines whether the specified <see cref="VwEvlUserBase"/> instances are considered equal.
        ///</summary>
        ///<param name="Object1">The first <see cref="VwEvlUserBase"/> to compare.</param>
        ///<param name="Object2">The second <see cref="VwEvlUserBase"/> 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 Equals(VwEvlUserBase Object1, VwEvlUserBase 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.UserId != Object2.UserId)
            {
                equal = false;
            }
            if (Object1.UserCnName != Object2.UserCnName)
            {
                equal = false;
            }
            if (Object1.Name != null && Object2.Name != null)
            {
                if (Object1.Name != Object2.Name)
                {
                    equal = false;
                }
            }
            else if (Object1.Name == null ^ Object1.Name == null)
            {
                equal = false;
            }
            if (Object1.ValiddateStart != null && Object2.ValiddateStart != null)
            {
                if (Object1.ValiddateStart != Object2.ValiddateStart)
                {
                    equal = false;
                }
            }
            else if (Object1.ValiddateStart == null ^ Object1.ValiddateStart == null)
            {
                equal = false;
            }
            if (Object1.Validdateend != null && Object2.Validdateend != null)
            {
                if (Object1.Validdateend != Object2.Validdateend)
                {
                    equal = false;
                }
            }
            else if (Object1.Validdateend == null ^ Object1.Validdateend == null)
            {
                equal = false;
            }
            if (Object1.Isused != Object2.Isused)
            {
                equal = false;
            }
            if (Object1.Evltimes != Object2.Evltimes)
            {
                equal = false;
            }
            return(equal);
        }