lab5, pt2

This commit is contained in:
2022-10-13 13:03:15 -05:00
parent 886cae5684
commit 97a084391c
163 changed files with 1446 additions and 52 deletions

17
Testing/TestProject/Program.cs Executable file
View File

@@ -0,0 +1,17 @@
namespace TestProject
{
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());
}
}
}