private void LoadNextQuestion() { CurrentQuestion = QuestionArray[_currentQuestionIndex]; if (_currentQuestionIndex == QuestionArray.Count() - 1) { IsLastQuestion = true; } _currentQuestionIndex++; CurrentQuestionNumber = _currentQuestionIndex; }