コード例 #1
0
ファイル: Program.cs プロジェクト: ZackChapman/Roulette_Odds
        static void Main(string[] args)
        {
            string b;

            do
            {
                Console.Clear();
                List <string> results   = new List <string>();
                Bets          gambeling = new Bets();
                results = gambeling.Gambeling();
                foreach (string a in results)
                {
                    Console.WriteLine(a);
                    Console.WriteLine("____________________________________________________________________|");
                }
                Console.WriteLine("\n\nDo you want to gamble again? Y/N");
                b = Console.ReadLine().ToLower();
            }while (b == "y");
            Console.ReadKey();
        }