/*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . .*/
 /** Equality comparison. */
 public bool Equals(symbol_part other)
 {
     return other != null && base.Equals(other) &&
     the_symbol().Equals(other.the_symbol());
 }
예제 #2
0
        /*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . .*/

        /** Equality comparison. */
        public bool Equals(symbol_part other)
        {
            return(other != null && base.Equals(other) &&
                   the_symbol().Equals(other.the_symbol()));
        }