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)
パラメーター説明
KeykeySelector が返すキーの型。
パラメーター説明
keySelectorconst Func<T, Key>&各要素からキーを抽出する関数。

ReturnValue

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

参照