PIbd-14_Rachek_A.S._Base/lab_0/Program.cs

19 lines
523 B
C#
Raw Normal View History

2024-02-29 10:45:00 +04:00
using ProjectBus;
2024-02-15 02:12:21 +04:00
namespace lab_0
{
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-25 10:17:26 +04:00
Application.Run(new FormSimpleBusCollection());
2024-02-15 02:12:21 +04:00
}
}
}