Process Hacker
Program.cs
Go to the documentation of this file.
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 
6 namespace GenerateZw
7 {
8  class Program
9  {
10  static void Main(string[] args)
11  {
12  ZwGen gen = new ZwGen();
13  string configFile = args.Length > 0 ? args[0] : "options.txt";
14 
15  try
16  {
17  gen.LoadConfig(configFile);
18  gen.Execute();
19  }
20  catch (Exception ex)
21  {
22  Console.WriteLine(ex.ToString());
23  }
24  }
25  }
26 }