Esempio n. 1
0
 protected bool Equals(MemberNodeBase other)
 {
     return Equals(Expression, other.Expression)
         && string.Equals(MemberName, other.MemberName)
         && Equals(StaticType, other.StaticType);
 }
Esempio n. 2
0
 protected bool Equals(MemberNodeBase other)
 {
     return(Equals(Expression, other.Expression) &&
            string.Equals(MemberName, other.MemberName) &&
            Equals(StaticType, other.StaticType));
 }