ISEbd-12_Sinelnikova_A.V._S.../ProjectCruiser/Program.cs

16 lines
496 B
C#
Raw Permalink Normal View History

2024-02-08 09:06:32 +04:00
namespace ProjectCruiser
{
internal static class Program
{
/// <summary>
2024-03-21 10:52:11 +04:00
/// The main entry point for the application.
2024-02-08 09:06:32 +04:00
/// </summary>
[STAThread]
static void Main()
{
2024-03-21 10:52:11 +04:00
// To customize application configuration such as set high DPI settings or default font, see https://aka.ms/applicationconfiguration.
2024-02-08 09:06:32 +04:00
ApplicationConfiguration.Initialize();
2024-03-21 10:52:11 +04:00
Application.Run(new FormCruisersCollection());
2024-02-08 09:06:32 +04:00
}
}
}