17 lines
506 B
C#
Raw Normal View History

2024-02-08 12:26:42 +03: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 16:34:56 +03:00
Application.Run(new ComponentForm());
2024-02-08 12:26:42 +03:00
}
}
}