LINQ_ThenBy()

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

Performs a subsequent ordering of the elements in a sequence in ascending order according to a key.

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

Template parameters

ParameterDescription
KeyThe type of the key returned by keySelector.

Arguments

ParameterTypeDescription
keySelectorconst Func<T, Key>&A function to extract a key from each element.

Return Value

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

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)

See Also