示例#1
0
文件: Exam.cs 项目: mdlthree/uFLOPS
        public Exam(int numOfQuestions, int highNumber, int lowNumber, Question.Operations anOperation)
        {
            _NumberOfQuestions = numOfQuestions;
            _HighNumber = highNumber;
            _LowNumber = lowNumber;
            _anOperation = anOperation;

            generateQuestions();
        }
示例#2
0
 public ViewModel()
 {
     InputValue = "";
     ExamResults = "Welcome To uFLOPS";
     CurrentQuestion = "";
     HighestNumber = "10";
     LowestNumber = "1";
     NumberOfQuestions = "10";
     _AnOperation = Question.Operations.Addition;
 }