public static bool operator >(Card C1, Card C2) { if (C1.CompareTo(C2) == 1) { return(true); } else { return(false); } }