00001 using System; 00002 using System.Collections.Generic; 00003 using System.Linq; 00004 using System.Windows.Forms; 00005 00006 00007 namespace UtmConvert { 00008 static class Program { 00012 [STAThread] 00013 static void Main() { 00014 Application.EnableVisualStyles(); 00015 Application.SetCompatibleTextRenderingDefault(false); 00016 00017 //HttpService hs = new HttpService(); 00018 00019 Application.Run(new UtmConvertMainForm()); 00020 } 00021 } 00022 }