about summary refs log tree commit diff
path: root/word_counter_alt/Word Counter/Program.cs
diff options
context:
space:
mode:
author1970-01-01 00:00:00 +0000
committer1970-01-01 00:00:00 +0000
commitadb29a41b828d31a586fec0446d970920237ae43 (patch)
tree518e1b7c6206e532eb0e64ef93a12e5ac1554cd6 /word_counter_alt/Word Counter/Program.cs
parentsoftware sales (diff)
downloadwf-m.tar
wf-m.tar.gz
wf-m.tar.bz2
wf-m.tar.xz
wf-m.zip
alternative versions m
Diffstat (limited to 'word_counter_alt/Word Counter/Program.cs')
-rw-r--r--word_counter_alt/Word Counter/Program.cs22
1 files changed, 22 insertions, 0 deletions
diff --git a/word_counter_alt/Word Counter/Program.cs b/word_counter_alt/Word Counter/Program.cs
new file mode 100644
index 0000000..0a8414f
--- /dev/null
+++ b/word_counter_alt/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());

+        }

+    }

+}