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

Has() public method

Determines whether [has] [the specified number].
public Has ( int number, CardSuit suit ) : bool
number int The number.
suit CardSuit The suit.
return bool
        public bool Has(int number, CardSuit suit)
        {
            return Has((CardRank)number, suit);
        }

Same methods

Deck::Has ( CardRank rank, CardSuit suit ) : bool