2024-02-15 08:49:00 +04:00
|
|
|
namespace lab1
|
|
|
|
{
|
|
|
|
internal static class Program
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// The main entry point for the application.
|
|
|
|
/// </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-04-24 22:45:48 +04:00
|
|
|
Application.Run(new FormTrackedVehicleCollection());
|
2024-02-15 08:49:00 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|