Program.cs
上传用户:xuelanruo
上传日期:2015-04-02
资源大小:163k
文件大小:1k
源码类别:

Ftp服务器

开发平台:

C#

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Windows.Forms;
  5. namespace FtpService
  6. {
  7. class Program
  8. {
  9. [STAThread]
  10. static void Main(string[] args)
  11. {
  12. if (args.Length == 0)
  13. {
  14. System.ServiceProcess.ServiceBase[] ServicesToRun;
  15. ServicesToRun = new System.ServiceProcess.ServiceBase[] { new FtpService() };
  16. System.ServiceProcess.ServiceBase.Run(ServicesToRun);
  17. }
  18. if (args.Length > 0)
  19. {
  20. Application.Run(new FtpConfig());
  21. }
  22. }
  23. }
  24. }