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