From dd07406b85b2d162a1c4d42a2dd6867ca4ccf579 Mon Sep 17 00:00:00 2001 From: ​ Date: Thu, 1 Jan 1970 00:00:00 +0000 Subject: string handling --- string_handling/StringHandling/Program.cs | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 string_handling/StringHandling/Program.cs (limited to 'string_handling/StringHandling/Program.cs') diff --git a/string_handling/StringHandling/Program.cs b/string_handling/StringHandling/Program.cs new file mode 100644 index 0000000..14abfd3 --- /dev/null +++ b/string_handling/StringHandling/Program.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace StringHandling +{ + static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.SetHighDpiMode(HighDpiMode.SystemAware); + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new frmMain()); + } + } +} -- cgit 1.4.1