summary refs log tree commit diff
path: root/future_value3/FutureValue/Program.cs
diff options
context:
space:
mode:
author1970-01-01 00:00:00 +0000
committer2025-01-08 04:46:28 +0000
commit38181c3bc1f73a958ed8a86406920fe16a58c115 (patch)
tree153a9905eaccda5e2ae4b2167667df6bafe6129e /future_value3/FutureValue/Program.cs
parentinvoice total 4 (diff)
downloadcs-38181c3bc1f73a958ed8a86406920fe16a58c115.tar
cs-38181c3bc1f73a958ed8a86406920fe16a58c115.tar.gz
cs-38181c3bc1f73a958ed8a86406920fe16a58c115.tar.bz2
cs-38181c3bc1f73a958ed8a86406920fe16a58c115.tar.xz
cs-38181c3bc1f73a958ed8a86406920fe16a58c115.zip
future value 3
Diffstat (limited to 'future_value3/FutureValue/Program.cs')
-rw-r--r--future_value3/FutureValue/Program.cs23
1 files changed, 23 insertions, 0 deletions
diff --git a/future_value3/FutureValue/Program.cs b/future_value3/FutureValue/Program.cs
new file mode 100644
index 0000000..79fd42c
--- /dev/null
+++ b/future_value3/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());

+        }

+    }

+}