コード例 #1
0
ファイル: MainPresenter.cs プロジェクト: dfrostpl/millionaire
 private void NextQuestion()
 {
     CurrentQuestion        = new Questions();
     CurrentQuestion        = GetRandomQuestion();
     _view.RightLabelNumber = CurrentQuestion.Index() + 1;
     _view.ShowQuestion(CurrentQuestion.Text, CurrentQuestion.Answers());
 }