using System; using System.Windows.Forms; namespace Demo.WindowsMobile{ static class Program { /// <summary> /// The main entry point for the application. /// </summary> [MTAThread] static void Main() { Application.Run(new LoginForm()); } } }