Process Hacker
Main Page
Namespaces
Data Structures
Files
File List
Globals
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
}
tools
GenerateHeader
GenerateHeader
Program.cs
Generated by
1.8.2