Esempio n. 1
0
        public override bool Equals(object obj)
        {
            if (obj != null && obj is Association)
            {
                Association other = (Association)obj;
                return(this.ToString().Equals(other.ToString()));
            }

            return(false);
        }