GetRandomQuestionAtLevel() public method

public GetRandomQuestionAtLevel ( int intLevel ) : Question
intLevel int
return Question
Exemplo n.º 1
0
 /// <summary>
 /// Get the next question
 /// </summary>
 /// <returns>Returns a question object</returns>
 public Question nextQuestion()
 {
     return(qCollection.GetRandomQuestionAtLevel(Level));
 }