From 06b3371bdc0b29d3b76600cca0dd0b32930b1369 Mon Sep 17 00:00:00 2001 From: ​ Date: Thu, 1 Jan 1970 00:00:00 +0000 Subject: most common char --- most_common_char/Most Common Character/Program.cs | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 most_common_char/Most Common Character/Program.cs (limited to 'most_common_char/Most Common Character/Program.cs') diff --git a/most_common_char/Most Common Character/Program.cs b/most_common_char/Most Common Character/Program.cs new file mode 100644 index 0000000..433dc7b --- /dev/null +++ b/most_common_char/Most Common Character/Program.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace Most_Common_Character +{ + internal static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new mostCommonCharacter()); + } + } +} -- cgit 1.4.1