PIbd-33_Sergunov_M.A._COP_4/Library/LibraryView/Program.cs

17 lines
405 B
C#
Raw Normal View History

2023-09-21 21:56:08 +04:00
namespace LibraryView
{
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();
Application.Run(new Form1());
}
}
}