CollectionUtilityInsertionSortT(IListT, IComparerT) Method |
Insertion sort is a simple sorting algorithm that works the way we sort playing cards in our hands. No memory allocation. Stable sort.
Namespace: NeoAxisAssembly: NeoAxis.Core (in NeoAxis.Core.dll) Version: 2026.1.1.0 (2026.1.1.0)
Syntaxpublic static void InsertionSort<T>(
IList<T> list,
IComparer<T> comparer
)
Parameters
- list IListT
- comparer IComparerT
Type Parameters
- T
See Also