/// <summary>
        ///     Indicates whether the current object is equal to another object of the same type.
        /// </summary>
        /// <param name="other">An object to compare with this object.</param>
        /// <returns>true if the current object is equal to the other parameter; otherwise, false.</returns>
        public bool Equals(GetContentHashListResult other)
        {
            if (!base.Equals(other) || other == null)
            {
                return(false);
            }

            return(ContentHashListWithDeterminism.Equals(other.ContentHashListWithDeterminism));
        }
Beispiel #2
0
        public bool Equals(AddOrGetContentHashListResult?other)
        {
            if (other == null || Code != other.Code)
            {
                return(false);
            }

            return(ContentHashListWithDeterminism.Equals(other.ContentHashListWithDeterminism));
        }