コード例 #1
0
ファイル: TuplePropertySymbol.cs プロジェクト: yourina/roslyn
        public bool Equals(TuplePropertySymbol other)
        {
            if ((object)other == this)
            {
                return(true);
            }

            return((object)other != null && TypeSymbol.Equals(_containingType, other._containingType, TypeCompareKind.ConsiderEverything2) && _underlyingProperty == other._underlyingProperty);
        }
コード例 #2
0
        public bool Equals(TuplePropertySymbol other)
        {
            if ((object)other == this)
            {
                return(true);
            }

            return((object)other != null && _containingType == other._containingType && _underlyingProperty == other._underlyingProperty);
        }
コード例 #3
0
        public bool Equals(TuplePropertySymbol other)
        {
            if ((object)other == this)
            {
                return true;
            }

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