public Form1() { InitializeComponent(); _Deck = new Deck(); _Deck.Generate(6); _Deck.Shuffle(_Random, 10); }
public Table() { _Deck = new Deck(); }