PIbd-21_Kouvshinoff_T._A._A.../AutomobilePlant/AutomobilePlantView/Program.cs
2024-02-10 22:17:44 +04:00

17 lines
500 B
C#

namespace AutomobilePlantView
{
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();
Application.Run(new Form1());
}
}
}