Add DBMS/C-Sharp/Lab/Week1/Register/WindowsFormsApplication2/Program.cs

This commit is contained in:
Aadit Agrawal 2025-01-28 16:03:23 +05:30
parent 9c325ebf28
commit 1ebd91f5d1

View File

@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApplication2
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}