about summary refs log tree commit diff
path: root/factorial_calc/Factorial Calculator/Program.cs
diff options
context:
space:
mode:
author1970-01-01 00:00:00 +0000
committer1970-01-01 00:00:00 +0000
commiteb7a58539d85aa0e46a777ebb4a8a8c4311ac08e (patch)
treef4ae8f4e612fdda968df993c38699e6678c10953 /factorial_calc/Factorial Calculator/Program.cs
parentcookie cals (diff)
downloadsql-eb7a58539d85aa0e46a777ebb4a8a8c4311ac08e.tar
sql-eb7a58539d85aa0e46a777ebb4a8a8c4311ac08e.tar.gz
sql-eb7a58539d85aa0e46a777ebb4a8a8c4311ac08e.tar.bz2
sql-eb7a58539d85aa0e46a777ebb4a8a8c4311ac08e.tar.xz
sql-eb7a58539d85aa0e46a777ebb4a8a8c4311ac08e.zip
factorial calc
Diffstat (limited to 'factorial_calc/Factorial Calculator/Program.cs')
-rw-r--r--factorial_calc/Factorial Calculator/Program.cs22
1 files changed, 22 insertions, 0 deletions
diff --git a/factorial_calc/Factorial Calculator/Program.cs b/factorial_calc/Factorial Calculator/Program.cs
new file mode 100644
index 0000000..1fdf402
--- /dev/null
+++ b/factorial_calc/Factorial Calculator/Program.cs
@@ -0,0 +1,22 @@
+using System;

+using System.Collections.Generic;

+using System.Linq;

+using System.Threading.Tasks;

+using System.Windows.Forms;

+

+namespace Factorial_Calculator

+{

+    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 factorialCalc());

+        }

+    }

+}