ASDV-C-Sharp/Lab4_2/Lab4_4_CalebFontenot/Program.cs

17 lines
517 B
C#

2022-09-13 15:08:17 +07:00
namespace Lab3_2_CalebFontenot
2022-09-08 14:12:41 +07:00
{
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());
}
}
}