Files
OnDoc/OnDoc_JSONViewer/Program.cs
Stefan Hutter 6b7de9389c update 20251008
2025-10-08 17:23:08 +02:00

23 lines
528 B
C#

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