From 8f280aeb5b5e0b9f2b396bfde56e563e07d65a99 Mon Sep 17 00:00:00 2001 From: ​ Date: Thu, 1 Jan 1970 00:00:00 +0000 Subject: word counter --- word_counter/Word Counter/Program.cs | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 word_counter/Word Counter/Program.cs (limited to 'word_counter/Word Counter/Program.cs') 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 + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new mainForm()); + } + } +} -- cgit 1.4.1