about summary refs log tree commit diff
path: root/word_counter/Word Counter/Program.cs
diff options
context:
space:
mode:
author1970-01-01 00:00:00 +0000
committer1970-01-01 00:00:00 +0000
commit8f280aeb5b5e0b9f2b396bfde56e563e07d65a99 (patch)
tree9c837b623a598cccba8cad0c932f1e2c3d5231b7 /word_counter/Word Counter/Program.cs
parentfat & carb cals (diff)
downloadwf-8f280aeb5b5e0b9f2b396bfde56e563e07d65a99.tar
wf-8f280aeb5b5e0b9f2b396bfde56e563e07d65a99.tar.gz
wf-8f280aeb5b5e0b9f2b396bfde56e563e07d65a99.tar.bz2
wf-8f280aeb5b5e0b9f2b396bfde56e563e07d65a99.tar.xz
wf-8f280aeb5b5e0b9f2b396bfde56e563e07d65a99.zip
word counter
Diffstat (limited to 'word_counter/Word Counter/Program.cs')
-rw-r--r--word_counter/Word Counter/Program.cs22
1 files changed, 22 insertions, 0 deletions
diff --git a/word_counter/Word Counter/Program.cs b/word_counter/Word Counter/Program.cs
new file mode 100644
index 0000000..0a8414f
--- /dev/null
+++ b/word_counter/Word Counter/Program.cs
@@ -0,0 +1,22 @@
+using System;

+using System.Collections.Generic;

+using System.Linq;

+using System.Threading.Tasks;

+using System.Windows.Forms;

+

+namespace Word_Counter

+{

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

+        }

+    }

+}