コード例 #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="VwInstitutesBase"/> and has the same value as this instance; otherwise, false.</returns>
 public virtual bool Equals(VwInstitutesBase toObject)
 {
     if (toObject == null)
     {
         return(false);
     }
     return(Equals(this, toObject));
 }
コード例 #2
0
        ///<summary>
        /// Determines whether the specified <see cref="VwInstitutesBase"/> instances are considered equal.
        ///</summary>
        ///<param name="Object1">The first <see cref="VwInstitutesBase"/> to compare.</param>
        ///<param name="Object2">The second <see cref="VwInstitutesBase"/> 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(VwInstitutesBase Object1, VwInstitutesBase 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.InstituteId != Object2.InstituteId)
            {
                equal = false;
            }
            if (Object1.InstituteName != null && Object2.InstituteName != null)
            {
                if (Object1.InstituteName != Object2.InstituteName)
                {
                    equal = false;
                }
            }
            else if (Object1.InstituteName == null ^ Object1.InstituteName == null)
            {
                equal = false;
            }
            if (Object1.Description != null && Object2.Description != null)
            {
                if (Object1.Description != Object2.Description)
                {
                    equal = false;
                }
            }
            else if (Object1.Description == null ^ Object1.Description == null)
            {
                equal = false;
            }
            if (Object1.InstituteDean != null && Object2.InstituteDean != null)
            {
                if (Object1.InstituteDean != Object2.InstituteDean)
                {
                    equal = false;
                }
            }
            else if (Object1.InstituteDean == null ^ Object1.InstituteDean == null)
            {
                equal = false;
            }
            if (Object1.Createtime != null && Object2.Createtime != null)
            {
                if (Object1.Createtime != Object2.Createtime)
                {
                    equal = false;
                }
            }
            else if (Object1.Createtime == null ^ Object1.Createtime == null)
            {
                equal = false;
            }
            if (Object1.CreateUserId != Object2.CreateUserId)
            {
                equal = false;
            }
            if (Object1.Status != Object2.Status)
            {
                equal = false;
            }
            if (Object1.UserId != Object2.UserId)
            {
                equal = false;
            }
            if (Object1.UserName != null && Object2.UserName != null)
            {
                if (Object1.UserName != Object2.UserName)
                {
                    equal = false;
                }
            }
            else if (Object1.UserName == null ^ Object1.UserName == null)
            {
                equal = false;
            }
            if (Object1.UserCnName != Object2.UserCnName)
            {
                equal = false;
            }
            if (Object1.FeBadgeId != Object2.FeBadgeId)
            {
                equal = false;
            }
            return(equal);
        }