示例#1
0
文件: Program.cs 项目: radtek/QM
 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());
 }
示例#2
0
 private void button1_Click(object sender, EventArgs e)
 {
     com.asewh.web.Services s = new com.asewh.web.Services();
     s.HelloWorld();
 }