Black Box
Program.cs
1 using System;
2 using System.Windows.Forms;
3 
4 namespace BBTasker
5 {
6  internal static class Program
7  {
11  [STAThread]
12  private static void Main()
13  {
14  Application.EnableVisualStyles();
15  Application.SetCompatibleTextRenderingDefault(false);
16  Application.Run(new BBtaskScheduler());
17  }
18  }
19 }