コード例 #1
0
 ///<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="FilesBase"/> and has the same value as this instance; otherwise, false.</returns>
 public virtual bool Equals(FilesBase toObject)
 {
     if (toObject == null)
     {
         return(false);
     }
     return(ValueEquals(this, toObject));
 }
コード例 #2
0
        /// <summary>
        /// Initializes a new instance of the FilesKey class.
        /// </summary>
        public FilesKey(FilesBase entity)
        {
            this.Entity = entity;

            #region Init Properties

            if (entity != null)
            {
                this.Id = entity.Id;
            }

            #endregion
        }
コード例 #3
0
        ///<summary>
        /// Determines whether the specified <see cref="FilesBase"/> instances are considered equal using value semantics.
        ///</summary>
        ///<param name="Object1">The first <see cref="FilesBase"/> to compare.</param>
        ///<param name="Object2">The second <see cref="FilesBase"/> 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(FilesBase Object1, FilesBase 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.Id != Object2.Id)
            {
                equal = false;
            }
            if (Object1.Filename != null && Object2.Filename != null)
            {
                if (Object1.Filename != Object2.Filename)
                {
                    equal = false;
                }
            }
            else if (Object1.Filename == null ^ Object2.Filename == null)
            {
                equal = false;
            }
            if (Object1.Version != null && Object2.Version != null)
            {
                if (Object1.Version != Object2.Version)
                {
                    equal = false;
                }
            }
            else if (Object1.Version == null ^ Object2.Version == null)
            {
                equal = false;
            }
            if (Object1.Filebinary != null && Object2.Filebinary != null)
            {
                if (Object1.Filebinary != Object2.Filebinary)
                {
                    equal = false;
                }
            }
            else if (Object1.Filebinary == null ^ Object2.Filebinary == null)
            {
                equal = false;
            }
            if (Object1.LastDate != null && Object2.LastDate != null)
            {
                if (Object1.LastDate != Object2.LastDate)
                {
                    equal = false;
                }
            }
            else if (Object1.LastDate == null ^ Object2.LastDate == null)
            {
                equal = false;
            }

            return(equal);
        }