PIbd22_Kamcharova_K.A._Doub.../DoubleDeckerBus/Program.cs

17 lines
520 B
C#
Raw Permalink Normal View History

2023-11-14 14:11:54 +04:00
namespace DoubleDeckerbus
2023-11-14 13:52:50 +04:00
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
2023-11-25 14:13:49 +04:00
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
2023-11-14 13:52:50 +04:00
ApplicationConfiguration.Initialize();
2023-11-25 14:55:27 +04:00
Application.Run(new FormDoubleDeckerbusCollection());
2023-11-14 13:52:50 +04:00
}
}
}