/* * Erstellt mit SharpDevelop. * Benutzer: 001142709 * Datum: 15.05.2019 * Zeit: 08:53 * * Sie können diese Vorlage unter Extras > Optionen > Codeerstellung > Standardheader ändern. */ using System; using System.Windows.Forms; namespace Eugen.ESystem.Windows.Forms { /// /// Class with program entry point. /// internal sealed class Program { /// /// Program entry point. /// [STAThread] private static void Main(string[] args) { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new Form1()); } } }