PIbd-23-Kondratev-N.D.-Gaso.../GasolineTanker/ProjectGasolineTanker/Program.cs

17 lines
515 B
C#
Raw Permalink Normal View History

2024-10-03 01:16:11 +04:00
namespace ProjectGasolineTanker
2023-11-13 23:59:09 +04:00
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
2024-10-03 01:16:11 +04:00
{
2023-11-13 23:59:09 +04:00
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize();
2024-10-03 01:40:53 +04:00
Application.Run(new FormTruckCollection());
2023-11-13 23:59:09 +04:00
}
}
}