/* * Erstellt mit SharpDevelop. * Benutzer: 001142709 * Datum: 05.04.2018 * Zeit: 10:40 * * Sie können diese Vorlage unter Extras > Optionen > Codeerstellung > Standardheader ändern. */ using System; using System.Windows.Forms; namespace NxLizenz { /// /// 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 MainForm()); } } }