/** Compares the dealers hand to the dealers hand. @return Returns 0 if they are equal. @return Returns 1 if this hand is greater than the other Hand. @return Returns -1 if the other Hand is greater than this Hand. */ public abstract int Compare(Hand playersHand);
/** Copy constructor. */ public Hand(Hand other) : base(other) { }