MIT-Curricular/DBMS/FullStack/Week8/WindowsFormsApplication1/WindowsFormsApplication1/Program.cs
2025-03-18 17:31:27 +05:30

22 lines
547 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
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());
}
}
}