diff options
author | | 1970-01-01 00:00:00 +0000 |
---|---|---|
committer | | 2025-01-08 04:48:47 +0000 |
commit | dd07406b85b2d162a1c4d42a2dd6867ca4ccf579 (patch) | |
tree | 8061bf2efa45fbeba4f64dd909d0c41f20174017 /string_handling/StringHandling/Program.cs | |
parent | future value 4 (diff) | |
download | cs-dd07406b85b2d162a1c4d42a2dd6867ca4ccf579.tar cs-dd07406b85b2d162a1c4d42a2dd6867ca4ccf579.tar.gz cs-dd07406b85b2d162a1c4d42a2dd6867ca4ccf579.tar.bz2 cs-dd07406b85b2d162a1c4d42a2dd6867ca4ccf579.tar.xz cs-dd07406b85b2d162a1c4d42a2dd6867ca4ccf579.zip |
string handling
Diffstat (limited to 'string_handling/StringHandling/Program.cs')
-rw-r--r-- | string_handling/StringHandling/Program.cs | 23 |
1 files changed, 23 insertions, 0 deletions
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 + { + /// <summary> + /// The main entry point for the application. + /// </summary> + [STAThread] + static void Main() + { + Application.SetHighDpiMode(HighDpiMode.SystemAware); + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new frmMain()); + } + } +} |