From 8f3809b5910cae96c5c9ec8c34850a7cf511761b Mon Sep 17 00:00:00 2001 From: Andreas Zweili Date: Sun, 16 Jul 2017 12:22:30 +0200 Subject: [PATCH] add a main routine --- .../marketconnectionNET/Programm.cs | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 csharp/marketconnectionNET/marketconnectionNET/Programm.cs diff --git a/csharp/marketconnectionNET/marketconnectionNET/Programm.cs b/csharp/marketconnectionNET/marketconnectionNET/Programm.cs new file mode 100644 index 0000000..dfe81c7 --- /dev/null +++ b/csharp/marketconnectionNET/marketconnectionNET/Programm.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace marketconnectionNET +{ + static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new Dashboard()); + } + } +}