Exemplo n.º 1
0
 static void Main(string[] args)
 {
     var options = new Options();
     if (CommandLine.Parser.Default.ParseArguments(args, options))
     {
         CSV csv = new CSV(options);
         csv.BuildIndex();
         csv.SearchAndGenerate();
     }
     Console.Read();
     Console.WriteLine("Press any key to exit...");
 }
Exemplo n.º 2
0
 public CSV(Options opt)
 {
     this.Option = opt;
     idx = new HashSet<string>();
 }