示例#1
0
        public static bool CornersResult(int spinResult)
        {
            Console.WriteLine(format + "You have selected the Corners (Contiguous Set of 4) bet.");
            Console.WriteLine(format + "Select a number between 1 and 36 to bet on.");
            int numberBet = int.Parse(Console.ReadLine());

            if (CheckBets.Corners(spinResult).Contains(numberBet) == true)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }