DdsPlay.Model.Deck.Sort C# (CSharp) Метод

Sort() публичный Метод

Sorts the cards in the deck using the Game's suit comparer.
public Sort ( ) : void
Результат void
        public void Sort()
        {
            Cards.Sort(Game.CardSuitComparer);

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