PIBD-23_Fomichev_V.S._Famil.../ProjectFamilyBudget/Program.cs

18 lines
501 B
C#
Raw Normal View History

2024-10-26 11:20:51 +04:00
namespace ProjectFamilyBudget
{
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());
2024-10-26 11:29:35 +04:00
2024-10-26 11:20:51 +04:00
}
}
}