From a44b50790d15388889d8c6f0e7d9d903d14c7001 Mon Sep 17 00:00:00 2001 From: ​ Date: Thu, 1 Jan 1970 00:00:00 +0000 Subject: distance calc --- distance_calc/Distance Calculator/Program.cs | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 distance_calc/Distance Calculator/Program.cs (limited to 'distance_calc/Distance Calculator/Program.cs') diff --git a/distance_calc/Distance Calculator/Program.cs b/distance_calc/Distance Calculator/Program.cs new file mode 100644 index 0000000..3901532 --- /dev/null +++ b/distance_calc/Distance Calculator/Program.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace Distance_Calculator +{ + internal static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new distanceCalculator()); + } + } +} -- cgit 1.4.1