MS Convert Date und Unifying Convert

This commit is contained in:
2022-03-14 10:32:58 +01:00
parent e1a2005d8a
commit 990ce9f01b
250 changed files with 451567 additions and 47476 deletions

25
NIService/Program.cs Normal file
View File

@@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.ServiceProcess;
using System.Text;
using System.Threading.Tasks;
namespace NIService
{
static class Program
{
/// <summary>
/// Der Haupteinstiegspunkt für die Anwendung.
/// </summary>
static void Main()
{
ServiceBase[] ServicesToRun;
ServicesToRun = new ServiceBase[]
{
new Service1()
};
ServiceBase.Run(ServicesToRun);
}
}
}