Exemplo n.º 1
0
 public List <Card> SortedHand()
 {
     return(Hand.OrderBy(z => z.Suit).ThenByDescending(z => z.Rank).ToList());;
 }