Files
OnDoc/ToolsDoksImportExport/Program.cs
Stefan Hutter 0f76b2b376 update 20250224
2025-02-23 17:33:17 +01:00

23 lines
533 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace ToolsDoksImportExport
{
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());
}
}
}