Console

Posted 相会

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Console相关的知识,希望对你有一定的参考价值。

控制台应用程序

启动选项->命令行参数" 指定为任意字符串,如: "/cxxx"

 

static void Main(string[] args )
{
    Service1 x = new Service1();
    if (args.Length > 0)
    {
        Console.WriteLine("Console");
        x.OnStart(null);
        Console.ReadLine();
    }
    else
    {
        System.ServiceProcess.ServiceBase[] ServicesToRun;
        // 同一进程中可以运行多个用户服务。若要将
        //另一个服务添加到此进程,请更改下行
        // 以创建另一个服务对象。例如,
        //
        //   ServicesToRun = New System.ServiceProcess.ServiceBase[] {new Service1(), new MySecondUserService()};
        //
        ServicesToRun = new System.ServiceProcess.ServiceBase[] { x};
        System.ServiceProcess.ServiceBase.Run(ServicesToRun);
    }
}

 

  命令行编译:
csc service1.cs

cmd 命令行状态 service1.exe /xxx

EditPlus

 

以上是关于Console的主要内容,如果未能解决你的问题,请参考以下文章

面向面试编程代码片段之GC

前端开发常用js代码片段

VS中添加自定义代码片段——偷懒小技巧

前端开发中最常用的JS代码片段

jacript var let const 区别

前端开发常用代码片段(中篇)