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 using System.Threading.Tasks;
6 
7 namespace GenerateHeader
8 {
9  class Program
10  {
11  static void Main(string[] args)
12  {
13  HeaderGen gen = new HeaderGen();
14  string configFile = args.Length > 0 ? args[0] : "options.txt";
15 
16  try
17  {
18  gen.LoadConfig(configFile);
19  gen.Execute();
20  }
21  catch (Exception ex)
22  {
23  Console.WriteLine(ex.ToString());
24  }
25  }
26  }
27 }