using System; using System.Threading.Tasks; using System.Windows.Forms; using ShiftOS.Main.ShiftOS; namespace ShiftOS.Main { static class Program { /// /// The main entry point for the application. /// [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Parallel.Invoke( () => Application.Run(new TestForm()), () => Application.Run(new Desktop())); } } }