Beispiel #1
0
 public ParserWrapper(List <string> filePaths)
 {
     foreach (string file in filePaths)
     {
         parsedCHMs[file] = new ParsedCHM(file);
     }
 }
Beispiel #2
0
        //ActiveAIDDB db;

        public ParserWrapper(string filePath)
        {
            parsedCHMs           = new Dictionary <string, ParsedCHM>();
            parsedCHMs[filePath] = new ParsedCHM(filePath);
        }