using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using System.Windows.Forms; using System.IO.Ports; // sr using System.Text; // sr using System.Threading; using System.Reflection; using System.ComponentModel; namespace GenesisDisplayTool { static class Program { /// /// Der Haupteinstiegspunkt für die Anwendung. /// [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new GENESIS_DISPLAY_TOOL()); } } }