We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 529ccb9 commit 3893412Copy full SHA for 3893412
C-Sharf Classes/Program.cs
@@ -0,0 +1,25 @@
1
+using System;
2
+using System.Collections.Generic;
3
+using System.Linq;
4
+using System.Threading.Tasks;
5
+using System.Windows.Forms;
6
+using C_Sharf_Classes.Classes;
7
+using C_Sharf_Classes.View;
8
+
9
+namespace C_Sharf_Classes
10
+{
11
+ static class Program
12
+ {
13
+ /// <summary>
14
+ /// The main entry point for the application.
15
+ /// </summary>
16
+ [STAThread]
17
+ static void Main()
18
19
+ Database db = new Database();
20
+ Application.EnableVisualStyles();
21
+ Application.SetCompatibleTextRenderingDefault(false);
22
+ Application.Run(new frmLogin());
23
+ }
24
25
+}
0 commit comments