PIbd-23_Starostin_I.K._Lain.../lainer/Lainer1/Program.cs

18 lines
526 B
C#
Raw Normal View History

2023-12-03 18:15:35 +04:00
namespace ProjectLainer
{
internal static class Program
{
/// <summary>
2023-12-08 21:10:19 +04:00
/// The main entry point for the application.
2023-12-03 18:15:35 +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();
2023-12-08 21:10:19 +04:00
Application.Run(new FormLainerCollection());
2023-12-03 18:15:35 +04:00
}
}
2023-12-08 21:10:19 +04:00
}