using System; using System.Threading; using System.Windows.Forms; namespace update_ { public class Run { [STAThread] static void Main(string[] args) { try { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); UpdateView frm = new UpdateView(args); // Util util = new Util(frm); // Thread t1 = new Thread(util.start); //t1.Start(); Application.Run(frm); }catch(Exception e) { MessageBox.Show("Ocorreu um Erro"); } // frm.start(); } } }