about summary refs log tree commit diff
path: root/software_sales/Software Sales/Program.cs
diff options
context:
space:
mode:
Diffstat (limited to 'software_sales/Software Sales/Program.cs')
-rw-r--r--software_sales/Software Sales/Program.cs22
1 files changed, 22 insertions, 0 deletions
diff --git a/software_sales/Software Sales/Program.cs b/software_sales/Software Sales/Program.cs
new file mode 100644
index 0000000..492837b
--- /dev/null
+++ b/software_sales/Software Sales/Program.cs
@@ -0,0 +1,22 @@
+using System;

+using System.Collections.Generic;

+using System.Linq;

+using System.Threading.Tasks;

+using System.Windows.Forms;

+

+namespace Software_Sales

+{

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

+        }

+    }

+}