File: Program.cs

package info (click to toggle)
dnlib 2.1-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, trixie
  • size: 4,236 kB
  • sloc: cs: 62,572; makefile: 17; ansic: 7
file content (13 lines) | stat: -rw-r--r-- 269 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace dnlib.Examples {
	class Program {
		static void Main(string[] args) {
			// Just uncomment whatever you want to debug
// 			Example1.Run();
// 			Example2.Run();
// 			Example3.Run();
// 			Example4.Run();
// 			Example5.Run();
			Example6.Run();
		}
	}
}