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()); + } + } +}