GetRandomQuestionAtLevel() публичный Метод

public GetRandomQuestionAtLevel ( int intLevel ) : Question
intLevel int
Результат Question
Пример #1
0
 /// <summary>
 /// Get the next question
 /// </summary>
 /// <returns>Returns a question object</returns>
 public Question nextQuestion()
 {
     return(qCollection.GetRandomQuestionAtLevel(Level));
 }