Exemplo n.º 1
0
        public bool Equals(TupleEventSymbol other)
        {
            if ((object)other == this)
            {
                return(true);
            }

            return((object)other != null && TypeSymbol.Equals(_containingType, other._containingType, TypeCompareKind.ConsiderEverything2) && _underlyingEvent == other._underlyingEvent);
        }
Exemplo n.º 2
0
        public bool Equals(TupleEventSymbol other)
        {
            if ((object)other == this)
            {
                return(true);
            }

            return((object)other != null && _containingType == other._containingType && _underlyingEvent == other._underlyingEvent);
        }
Exemplo n.º 3
0
        public bool Equals(TupleEventSymbol other)
        {
            if ((object)other == this)
            {
                return true;
            }

            return (object)other != null && _containingType == other._containingType && _underlyingEvent == other._underlyingEvent;
        }