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

20 lines
537 B
C#
Raw Normal View History

2024-03-13 19:49:07 +04:00
using System.Drawing;
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>
2024-03-13 19:49:07 +04:00
/// The main entry point for the application.
2024-02-14 15:51:28 +04:00
/// </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-03-13 19:49:07 +04:00
Application.Run(new FormTransCollection());
2024-02-14 15:51:28 +04:00
}
2024-02-14 15:48:47 +04:00
}
2024-03-13 19:49:07 +04:00
2024-02-14 15:48:47 +04:00
}