System::Linq::IOrderedEnumerable::LINQ_ThenBy method

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

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)
ParameterDescription
KeyThe type of the key returned by keySelector.
ParameterTypeDescription
keySelectorconst Func<T, Key>&A function to extract a key from each element.

ReturnValue

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

See Also