public bool HasMatchingValue(Card other)
 {
     return((Value == other.Value) ? true : false);
 }
 public bool HasMatchingSuit(Card other)
 {
     return((Suit == other.Suit) ? true : false);
 }