sorting and PLF example 2 with modern form.

a lot of C# to be real!
This commit is contained in:
2025-10-23 11:46:36 +02:00
parent cb1b91ba0f
commit 85670b8a9e
16 changed files with 842 additions and 11 deletions

View File

@@ -0,0 +1,14 @@
using System;
using System.Windows.Forms;
namespace SortVisualizer;
internal static class Program
{
[STAThread]
static void Main()
{
ApplicationConfiguration.Initialize();
Application.Run(new VisualizerForm());
}
}