Пример #1
0
 /** 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);
Пример #2
0
 /** Copy constructor. */
 public Hand(Hand other)
     : base(other)
 {
 }