コード例 #1
0
 public bool HasMatchingValue(Card other)
 {
     return((Value == other.Value) ? true : false);
 }
コード例 #2
0
 public bool HasMatchingSuit(Card other)
 {
     return((Suit == other.Suit) ? true : false);
 }