2024-09-19 00:39:30 +04:00
|
|
|
namespace Forms
|
|
|
|
{
|
|
|
|
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-10-04 00:24:05 +04:00
|
|
|
Application.Run(new Form1());
|
2024-09-19 00:39:30 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|