29 lines
646 B
C#
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());
|
|
}
|
|
}
|
|
}
|