Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
PersonString フィールドを含むオブジェクトがありますName。アルファベット順の人のリストから名前のリストが必要です。ループを実行せずにそれを行うよりスマートな方法はありますか。
Person
Name
select および orderby 拡張機能を使用できます。次に例を示します。
var result = list.Select(i => i.Name).OrderBy(j => j);