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

17 lines
511 B
C#
Raw Normal View History

2024-02-28 23:06:50 +04:00
namespace ProjectElectroTrans
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();
2024-02-28 23:06:50 +04:00
Application.Run(new FormElectroTrans());
2024-02-14 15:51:28 +04:00
}
2024-02-14 15:48:47 +04:00
}
}