示例#1
0
文件: Service1.cs 项目: ChinaCCF/ADS
 protected override void OnStart(string[] args)
 {
     cfg = Config.sharedInstance();
     http = new HTTP();
     http.setPort(int.Parse(cfg.port));
     http.start();
 }
示例#2
0
文件: Program.cs 项目: ChinaCCF/ADS
        static void Main(string[] args)
        {
            cfg = Config.sharedInstance();
            http = new HTTP();
            http.setPort(int.Parse(cfg.port));
            http.start();

            while(true){}
        }