From 1699ad285b7b7cd4aad7be41a0703d5e428fe55d Mon Sep 17 00:00:00 2001 From: ​ Date: Thu, 1 Jan 1970 00:00:00 +0000 Subject: future value 4 --- future_value4/FutureValue/Program.cs | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 future_value4/FutureValue/Program.cs (limited to 'future_value4/FutureValue/Program.cs') diff --git a/future_value4/FutureValue/Program.cs b/future_value4/FutureValue/Program.cs new file mode 100644 index 0000000..79fd42c --- /dev/null +++ b/future_value4/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 + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.SetHighDpiMode(HighDpiMode.SystemAware); + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new frmFutureValue()); + } + } +} -- cgit 1.4.1