Exemplo n.º 1
0
        public override bool Equals(LocalMatcher match)
        {
            AttributeMatch atMatch = match as AttributeMatch;

            return(atMatch != null && atMatch.Attribute == Attribute && atMatch.MatchMode == MatchMode && atMatch.Value == Value);
        }
Exemplo n.º 2
0
 /// <summary>True if two local matchers are equal.</summary>
 public virtual bool Equals(LocalMatcher match)
 {
     return(match.GetType() == GetType());
 }