using System; using System.Collections.Generic; using System.Linq; using System.Windows.Forms; using System.Threading; namespace ActivateDiff { static class Program { /// /// The main entry point for the application. /// [STAThread] static void Main(string[] args) { if (args.Length == 0) { return; } Application.Run(new DummyWindow(args)); } } }