Program.cs
资源名称:FtpServer.rar [点击查看]
上传用户:xuelanruo
上传日期:2015-04-02
资源大小:163k
文件大小:1k
源码类别:
Ftp服务器
开发平台:
C#
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Windows.Forms;
- namespace FtpService
- {
- class Program
- {
- [STAThread]
- static void Main(string[] args)
- {
- if (args.Length == 0)
- {
- System.ServiceProcess.ServiceBase[] ServicesToRun;
- ServicesToRun = new System.ServiceProcess.ServiceBase[] { new FtpService() };
- System.ServiceProcess.ServiceBase.Run(ServicesToRun);
- }
- if (args.Length > 0)
- {
- Application.Run(new FtpConfig());
- }
- }
- }
- }