Update 20240802_vor_SfUpdate

This commit is contained in:
Stefan Hutter
2024-08-02 07:24:50 +02:00
parent 8fb1b93185
commit 4f07fad418
231 changed files with 4204208 additions and 49 deletions

22
DocIO_Demo_SHU/Program.cs Normal file
View File

@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace DocIO_Demo_SHU
{
internal static class Program
{
/// <summary>
/// Der Haupteinstiegspunkt für die Anwendung.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}