Vereinsmeisterschaften
22aa7800eae54b428d40e835886cefe1fdefdfdf
This is a software that can be used to manage the internal competition of the swimming club Illertissen called "Vereinsmeisterschaften".
Loading...
Searching...
No Matches
CollectionHelper.cs
1
using
System.Collections.ObjectModel;
2
3
namespace
Vereinsmeisterschaften.Core.Helpers
4
{
8
public
static
class
CollectionHelper
9
{
17
public
static
void
Sort<T>(
this
ObservableCollection<T> collection, Comparison<T> comparison)
18
{
19
var sortableList =
new
List<T>(collection);
20
sortableList.Sort(comparison);
21
22
for
(
int
i = 0; i < sortableList.Count; i++)
23
{
24
collection.Move(collection.IndexOf(sortableList[i]), i);
25
}
26
}
27
}
28
}
Vereinsmeisterschaften.Core.Helpers
Definition
CollectionHelper.cs:4
Vereinsmeisterschaften.Core
Helpers
CollectionHelper.cs
Generated on Sun Feb 22 2026 13:06:13 for Vereinsmeisterschaften by
1.13.2