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

28
NIService/Service1.cs Normal file
View File

@@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Linq;
using System.ServiceProcess;
using System.Text;
using System.Threading.Tasks;
namespace NIService
{
public partial class Service1 : ServiceBase
{
public Service1()
{
InitializeComponent();
}
protected override void OnStart(string[] args)
{
}
protected override void OnStop()
{
}
}
}