コード例 #1
0
ファイル: Blackjack.cs プロジェクト: ProbablyBen/Blackjack
        /// <summary>
        ///     Finds the winner of the game.
        /// </summary>
        /// <returns>The result of the game.</returns>
        public GameResult GetResult()
        {
            var result = ResultChecker.GetResult(Dealer, Player);

            return(result);
        }