using System; using System.Collections.Generic; using System.Windows.Forms; namespace WCSMixPubSub { static class Program { /// /// The main entry point for the application. /// [MTAThread] static void Main() { try { Application.Run(new MainForm()); } catch (Exception ex) { MessageBox.Show(ex.Message + "\n" + ex.StackTrace + "\n" + ex.InnerException.ToString()); } } } }