Пример #1
0
        static void Main(string[] args)
        {
            Deck Pakka = new Deck();

            Pakka.CreateDeck(13);
            Pakka.ShowDeck();
            Console.WriteLine("\n*shuffle shuffle shuffle shuffle*\n");
            Pakka.Shuffle();
            Pakka.ShowDeck();
        }