about summary refs log tree commit diff
path: root/distance_file/Distance Calculator/Program.cs
diff options
context:
space:
mode:
author1970-01-01 00:00:00 +0000
committer1970-01-01 00:00:00 +0000
commit8e0b69c9cb4dda70de82b2c6444e99aa3aae5d61 (patch)
tree71b8f2b90711cfb94d8e0f1c0cdd22308b1bff62 /distance_file/Distance Calculator/Program.cs
parentpet info (diff)
downloadwf-8e0b69c9cb4dda70de82b2c6444e99aa3aae5d61.tar
wf-8e0b69c9cb4dda70de82b2c6444e99aa3aae5d61.tar.gz
wf-8e0b69c9cb4dda70de82b2c6444e99aa3aae5d61.tar.bz2
wf-8e0b69c9cb4dda70de82b2c6444e99aa3aae5d61.tar.xz
wf-8e0b69c9cb4dda70de82b2c6444e99aa3aae5d61.zip
distance file
Diffstat (limited to 'distance_file/Distance Calculator/Program.cs')
-rw-r--r--distance_file/Distance Calculator/Program.cs22
1 files changed, 22 insertions, 0 deletions
diff --git a/distance_file/Distance Calculator/Program.cs b/distance_file/Distance Calculator/Program.cs
new file mode 100644
index 0000000..3901532
--- /dev/null
+++ b/distance_file/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

+    {

+        /// <summary>

+        /// The main entry point for the application.

+        /// </summary>

+        [STAThread]

+        static void Main()

+        {

+            Application.EnableVisualStyles();

+            Application.SetCompatibleTextRenderingDefault(false);

+            Application.Run(new distanceCalculator());

+        }

+    }

+}