Table of Contents

Class SortExtensions

Namespace
Lers.Utils
Assembly
Lers.Utils.dll

Содержит методы расширения для сортировки списков.

public static class SortExtensions
Inheritance
SortExtensions
Inherited Members

Methods

NaturalOrderByDescending<T>(IEnumerable<T>, Func<T, string>)

Сортирует элементы последовательности в обратном порядке с помощью естественной сортировки.

public static IOrderedEnumerable<T> NaturalOrderByDescending<T>(this IEnumerable<T> source, Func<T, string> keySelector)

Parameters

source IEnumerable<T>
keySelector Func<T, string>

Returns

IOrderedEnumerable<T>

Type Parameters

T

NaturalOrderBy<T>(IEnumerable<T>, Func<T, string>)

Сортирует элементы последовательности с помощью естественной сортировки.

public static IOrderedEnumerable<T> NaturalOrderBy<T>(this IEnumerable<T> source, Func<T, string> keySelector)

Parameters

source IEnumerable<T>
keySelector Func<T, string>

Returns

IOrderedEnumerable<T>

Type Parameters

T