static void Main(string[] args) { log.Debug("start"); if (args.Length > 0) { com.asewh.web.Services s = new com.asewh.web.Services(); s.HelloWorld(); log.Debug("exit"); Environment.Exit(0); } Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new Form1()); }
private void button1_Click(object sender, EventArgs e) { com.asewh.web.Services s = new com.asewh.web.Services(); s.HelloWorld(); }