ISEbd-21_Melnikov_I.O._CarS.../CarService/CarServiceView/Program.cs

17 lines
397 B
C#
Raw Normal View History

2023-04-01 14:40:28 +04:00
namespace CarServiceView
{
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();
2023-04-01 14:41:06 +04:00
Application.Run();
2023-04-01 14:40:28 +04:00
}
}
}