コード例 #1
0
ファイル: Test.cs プロジェクト: moskalenco-a/TestApp
 public Test(string path)
 {
     collection = new QuestionCollection();
     collection.LoadFromFile(path);
     correct = Enumerable.Repeat(false, collection.Count).ToList();
     current = 0;
 }