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

14
TextSort/ISortWindow.cs Normal file
View File

@@ -0,0 +1,14 @@
using System.Collections.ObjectModel;
namespace TextSortWindow
{
public interface ISortWindow
{
string InputText { get; }
string SelectedStrategy { get; }
void DisplaySortedText(string sortedText);
void SetSortOptions(List<string> options);
void DisplayTime(double milliseconds);
event EventHandler SortButtonClicked;
}
}