static void Main(string[] args)
        {
            Card cardToCheck = new Card(Suits.Clubs, Values.Three);
            bool doesItMatch = Card.DoesCardMatch(cardToCheck, Suits.Hearts);
            Console.WriteLine(doesItMatch);

            Console.ReadKey();
        }
Beispiel #2
0
 public static bool DoesCardMatch(Card cardToCheck, Values value)
 {
     if (cardToCheck.Value == value)
     {
         return true;
     }
     else
     {
         return false;
     }
 }
Beispiel #3
0
 public static bool DoesCardMatch(Card cardToCheck, Suits suit)
 {
     if (cardToCheck.Suit == suit)
     {
         return true;
     }
     else
     {
         return false;
     }
 }