Exemplo n.º 1
0
        public void PrintCards()
        {
            string functionId = $"{classId}.PrintCards()";

            DeckHelpers.PrintCards(deck);
        }
Exemplo n.º 2
0
 public void PrintCards(Card[] cards)
 {
     DeckHelpers.PrintCards(cards);
 }
Exemplo n.º 3
0
        public void PrintCards(Card[] arr)
        {
            string functionId = $"{classId}.PrintCards(Card[])";

            DeckHelpers.PrintCards(arr);
        }