2022-10-18 14:28:33 -05:00
|
|
|
namespace lab5_4_CalebFontenot
|
2022-10-13 13:03:15 -05: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());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|