, , , Windows, , ( ) ( ). "" "", .
, Main :
static class Program
{
private static void Main(string[] args)
{
if (args.Length > 0 && args[0] == "/form")
{
var form = new MainForm();
Application.Run(form);
return;
}
var servicesToRun = new ServiceBase[]
{
new BackgroundService()
};
ServiceBase.Run(servicesToRun);
}
}
" " Visual Studio "/form", . , - . "", , .