public bool Equals(MissingAssemblySymbol other)
        {
            if ((object)other == null)
            {
                return(false);
            }

            if (ReferenceEquals(this, other))
            {
                return(true);
            }

            return(identity.Equals(other.Identity));
        }
Beispiel #2
0
        public bool Equals(MissingAssemblySymbol other, SymbolEqualityComparer _)
        {
            if (ReferenceEquals(other, null))
            {
                return(false);
            }

            if (ReferenceEquals(this, other))
            {
                return(true);
            }

            return(identity.Equals(other.Identity));
        }