PIBD14-BOYKO-M.S.SuperEasyS.../Lab1/Program.cs

17 lines
485 B
C#
Raw Normal View History

2024-02-14 15:51:28 +04:00
namespace Lab1
2024-02-14 15:48:47 +04:00
{
2024-02-14 15:51:28 +04:00
internal static class Program
2024-02-14 15:48:47 +04:00
{
2024-02-14 15:51:28 +04:00
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize();
Application.Run(new Form1());
}
2024-02-14 15:48:47 +04:00
}
}