diff options
author | | 1970-01-01 00:00:00 +0000 |
---|---|---|
committer | | 1970-01-01 00:00:00 +0000 |
commit | 45a9ce064a8a4665f2846920dfc4b4402b597728 (patch) | |
tree | ea6c5ada196b081c745335798d3e91841e902ba1 /name_formatter/Name Formatter/Program.cs | |
parent | distance calc (diff) | |
download | wf-45a9ce064a8a4665f2846920dfc4b4402b597728.tar wf-45a9ce064a8a4665f2846920dfc4b4402b597728.tar.gz wf-45a9ce064a8a4665f2846920dfc4b4402b597728.tar.bz2 wf-45a9ce064a8a4665f2846920dfc4b4402b597728.tar.xz wf-45a9ce064a8a4665f2846920dfc4b4402b597728.zip |
name formatter
Diffstat (limited to 'name_formatter/Name Formatter/Program.cs')
-rw-r--r-- | name_formatter/Name Formatter/Program.cs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/name_formatter/Name Formatter/Program.cs b/name_formatter/Name Formatter/Program.cs new file mode 100644 index 0000000..536359f --- /dev/null +++ b/name_formatter/Name Formatter/Program.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace Name_Formatter +{ + 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 nameFormatter()); + } + } +} |