Exemple #1
0
 public QuestionList NewQuestionListFilteredByTopics(params int[] topics)
 {
     var ts = new TopicsStatistics(this, Program.DocIdsFileName);
     var qst = topics.SelectMany(topic => ts.GetQuestionsByTopic(topic)).Distinct();
     return new QuestionList(qst);
 }