- Get rid of annoying ArraySortHelper.cs when method MemoryExtensions.Sort() will become available in System.Memory package newer than 4.5.4.
Replace
with
ArraySortHelper<T>.Sort(new Span<T>(_items, 0, _size), comparison);
new Span<T>(_items, 0, _size).Sort(comparison);