示例#1
0
        protected override bool Equals(VisitorVariablesBase other)
        {
            var o = other as SingleVisitorVariable <TValue>;

            return(o != null && Key.Equals(o.Key));
        }
示例#2
0
 protected virtual bool Equals(VisitorVariablesBase other)
 {
     return(other.GetType() == GetType());
 }
示例#3
0
        protected override bool Equals(VisitorVariablesBase other)
        {
            var o = other as CompositeVariable;

            return(o != null && o.Var1.Equals(Var1));
        }