Exemplo n.º 1
0
        public override bool Equals(object other)
        {
            ParserMemoryKey key = other as ParserMemoryKey;

            if (key != null)
            {
                return(Equals(key));
            }

            return(false);
        }
Exemplo n.º 2
0
 public bool Equals(ParserMemoryKey other)
 {
     return((pattern == other.pattern) && (position == other.position));
 }
Exemplo n.º 3
0
 public bool Equals(ParserMemoryKey other)
 {
     return (pattern == other.pattern) && (position == other.position);
 }