Esempio n. 1
0
    public override bool Equals(object o)
    {
        AdminCountry other = o as AdminCountry;

        if (other == null)
        {
            return(false);
        }
        return(CtCode.Equals(other.CtCode));
    }
Esempio n. 2
0
 public override int GetHashCode()
 {
     return(CtCode.GetHashCode());
 }