示例#1
0
 public override int GetHashCode()
 {
     unchecked
     {
         return((NonTerminal.GetHashCode() * 397) ^ DerivedElements.GetHashCode());
     }
 }
示例#2
0
        public bool Equals(Production <T> other)
        {
            if (ReferenceEquals(null, other))
            {
                return(false);
            }
            if (ReferenceEquals(this, other))
            {
                return(true);
            }

            return
                (NonTerminal.Equals(other.NonTerminal) &&
                 DerivedElements.SequenceEqual(other.DerivedElements));
        }