ASDV-C-Sharp/lab6_1/lab6_1_CalebFontenot/Program.cs
2022-11-15 14:22:17 -06:00

17 lines
517 B
C#
Executable File

namespace lab6_1_CalebFontenot
{
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());
}
}
}