Метод System::Linq::IOrderedEnumerable::LINQ_ThenBy

IOrderedEnumerable::LINQ_ThenBy(const Func<Source, Key>&) method

template<typename Key> SharedPtr<IOrderedEnumerable<Source>> System::Linq::IOrderedEnumerable<T>::LINQ_ThenBy(const Func<Source, Key> &keySelector)

См. также

IOrderedEnumerable::LINQ_ThenBy(const Func<T, Key>&) method

Выполняет последующую сортировку элементов последовательности по возрастанию в соответствии с ключом.

template<typename Key> SharedPtr<IOrderedEnumerable<T>> System::Linq::IOrderedEnumerable<T>::LINQ_ThenBy(const Func<T, Key> &keySelector)
ПараметрОписание
КлючТип ключа, возвращаемого функцией keySelector.
ПараметрТипОписание
keySelectorconst Func<T, Key>&Функция для извлечения ключа из каждого элемента.

ReturnValue

System::Linq::IOrderedEnumerable whose elements are sorted according to a key.

См. также