コード例 #1
0
        public static string selectSauces(string sauces)
        {
            var Midterm_Final = new BurgerApp();

            //Midterm_Final.optionsArray[3] = sauces;
            var sauceChoice = sauces;
            return sauceChoice;
        }
コード例 #2
0
        public static string selectCheese(string cheese)
        {
            var Midterm_Final = new BurgerApp();

            Midterm_Final.optionsArray[1] = cheese;
            var cheeseType = cheese;
            return cheeseType;
        }
コード例 #3
0
        public static string createBun(string _bunType)
        {
            var Midterm_Final = new BurgerApp();

            Midterm_Final.optionsArray[0] = _bunType;
            var bunType = _bunType;

            return bunType;
        }
コード例 #4
0
        public static void addToStack(string options)
        {
            var Midterm_Final = new BurgerApp();

            //Midterm_Final.lblPreview.Text = options;
            //Midterm_Final.optionsArray[0] = options;
            //var bunType = _bunType;
            //return bunType;
        }