timetable/TimeTable/Program.cs

17 lines
489 B
C#
Raw Permalink Normal View History

2025-03-19 22:13:52 +00:00
namespace TimeTable
{
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 Main());
}
}
}