PIbd-23-Nasyrov-A.G.-Flower.../ProjectFlowerShop/Program.cs

17 lines
506 B
C#
Raw Normal View History

2024-02-08 13:26:42 +04:00
namespace ProjectFlowerShop
{
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-02-08 17:34:56 +04:00
Application.Run(new ComponentForm());
2024-02-08 13:26:42 +04:00
}
}
}