コード例 #1
0
 private QuestionForm ParseQLFile(FileInfo qlFile)
 {
     try
     {
         var qlController = new QLController();
         return(qlController.ParseQLFile(qlFile));
     }
     catch (Exception ex)
     {
         throw new ApplicationException("An unexpected error occured during parsing of the QL file.", ex);
     }
 }