3
Queryable.SelectMany()メソッドのC#LINQ構文はありますか?
C#LINQ構文を使用してクエリを作成する場合、キーワード構文からQueryable.SelectManyメソッドを使用する方法はありますか? ために string[] text = { "Albert was here", "Burke slept late", "Connor is happy" }; 流暢な方法を使用してクエリを実行できます var tokens = text.SelectMany(s => s.Split(' ')); に似たクエリ構文はありますか var tokens = from x in text selectmany s.Split(' ')
88
c#
linq
keyword
iqueryable