Push project

This commit is contained in:
2026-01-07 22:41:11 +08:00
commit 794fb22492
103 changed files with 6658 additions and 0 deletions

21
TextSort/Program.cs Normal file
View File

@@ -0,0 +1,21 @@
using SortingModel;
using SortingModel.SortingAlgorithms;
using TextSortWindow;
namespace TextSort
{
internal static class Program
{
[STAThread]
static void Main()
{
ApplicationConfiguration.Initialize();
using Window view = new();
SortingService model = new(new SortingAlgorithmFactory());
SortController controller = new(view, model);
Application.Run(view);
}
}
}