about summary refs log tree commit diff
path: root/most_common_char/Most Common Character/Program.cs
diff options
context:
space:
mode:
author1970-01-01 00:00:00 +0000
committer1970-01-01 00:00:00 +0000
commit06b3371bdc0b29d3b76600cca0dd0b32930b1369 (patch)
tree7b929ba0a40fa64ebaf0e21814797822749ffa48 /most_common_char/Most Common Character/Program.cs
parentlatin translator (diff)
downloadsql-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.cs22
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());

+        }

+    }

+}