Esempio n. 1
0
 public override int GetHashCode()
 {
     return(Name.GetHashCode() ^ BaseElementType.GetHashCode());
 }
Esempio n. 2
0
        public override bool Equals(object obj)
        {
            CustomEntitySetType other = obj as CustomEntitySetType;

            return(null == other ? false : Name.Equals(other.Name) && BaseElementType.Equals(other.BaseElementType));
        }