diff options
author | | 1970-01-01 00:00:00 +0000 |
---|---|---|
committer | | 1970-01-01 00:00:00 +0000 |
commit | 06b3371bdc0b29d3b76600cca0dd0b32930b1369 (patch) | |
tree | 7b929ba0a40fa64ebaf0e21814797822749ffa48 /most_common_char/Most Common Character/Program.cs | |
parent | latin translator (diff) | |
download | sql-06b3371bdc0b29d3b76600cca0dd0b32930b1369.tar sql-06b3371bdc0b29d3b76600cca0dd0b32930b1369.tar.gz sql-06b3371bdc0b29d3b76600cca0dd0b32930b1369.tar.bz2 sql-06b3371bdc0b29d3b76600cca0dd0b32930b1369.tar.xz sql-06b3371bdc0b29d3b76600cca0dd0b32930b1369.zip |
most common char
Diffstat (limited to 'most_common_char/Most Common Character/Program.cs')
-rw-r--r-- | most_common_char/Most Common Character/Program.cs | 22 |
1 files changed, 22 insertions, 0 deletions
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 + { + /// <summary> + /// The main entry point for the application. + /// </summary> + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new mostCommonCharacter()); + } + } +} |