Exemplo n.º 1
0
 public bool Equals(Card other)
 {
     return(Suit.Equals(other.Suit) && Rank.Equals(other.Rank));
 }
Exemplo n.º 2
0
 public int CompareTo(Card other)
 {
     return(Suit.Equals(other.Suit)
         ? Rank.CompareTo(other.Rank)
         : Suit.CompareTo(other.Suit));
 }