main
1using System.Diagnostics;
2
3namespace Gorilla.Commons.Infrastructure.Debugging
4{
5 static public class Launch
6 {
7 static public void the_debugger()
8 {
9#if DEBUG
10 if (Debugger.IsAttached) Debugger.Break();
11 else Debugger.Launch();
12#endif
13 }
14 }
15}