2024-11-24 15:22:18 +04:00
|
|
|
using Lab4.Forms;
|
|
|
|
|
2024-11-24 13:46:01 +04:00
|
|
|
namespace Lab4
|
|
|
|
{
|
|
|
|
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-11-24 15:22:18 +04:00
|
|
|
Application.Run(new FormMain());
|
2024-11-24 13:46:01 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|