DdsPlay.Model.Deck.Sort C# (CSharp) Method

Sort() public method

Sorts the cards in the deck using the Game's suit comparer.
public Sort ( ) : void
return void
        public void Sort()
        {
            Cards.Sort(Game.CardSuitComparer);

            if (SortChanged != null)
                SortChanged(this, null);
        }