diff options
author | | 1970-01-01 00:00:00 +0000 |
---|---|---|
committer | | 2025-01-08 04:44:47 +0000 |
commit | 1f317d3eb564e463a78cd0e47f4bcf95838c60ec (patch) | |
tree | 2c36aebaaf84c22cc3ddaa81809f01f95e326e08 /future_value2/FutureValue/Program.cs | |
parent | invoice total 2 (diff) | |
download | cs-1f317d3eb564e463a78cd0e47f4bcf95838c60ec.tar cs-1f317d3eb564e463a78cd0e47f4bcf95838c60ec.tar.gz cs-1f317d3eb564e463a78cd0e47f4bcf95838c60ec.tar.bz2 cs-1f317d3eb564e463a78cd0e47f4bcf95838c60ec.tar.xz cs-1f317d3eb564e463a78cd0e47f4bcf95838c60ec.zip |
future value 2
Diffstat (limited to 'future_value2/FutureValue/Program.cs')
-rw-r--r-- | future_value2/FutureValue/Program.cs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/future_value2/FutureValue/Program.cs b/future_value2/FutureValue/Program.cs new file mode 100644 index 0000000..79fd42c --- /dev/null +++ b/future_value2/FutureValue/Program.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace FutureValue +{ + 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 frmFutureValue()); + } + } +} |