Files
Epi2Exchange/Epi2Exchange/Program.cs
2025-02-12 09:46:23 +01:00

29 lines
646 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Epi2Exchange
{
static class Program
{
static Converter converter;
/// <summary>
/// Der Haupteinstiegspunkt für die Anwendung.
/// </summary>
[STAThread]
static void Main()
{
converter = new Converter();
converter.MainUpdateProcedure();
//Application.EnableVisualStyles();
//Application.SetCompatibleTextRenderingDefault(false);
//Application.Run(new Form1());
}
}
}