Metodo 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)

Vedi anche

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

Esegue un ordinamento successivo degli elementi in una sequenza in ordine crescente secondo una chiave.

template<typename Key> SharedPtr<IOrderedEnumerable<T>> System::Linq::IOrderedEnumerable<T>::LINQ_ThenBy(const Func<T, Key> &keySelector)
ParametroDescrizione
ChiaveIl tipo della chiave restituita da keySelector.
ParametroTipoDescrizione
keySelectorconst Func<T, Key>&Una funzione per estrarre una chiave da ogni elemento.

ReturnValue

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

Vedi anche