最佳答案
当使用 C # LINQ 语法编写查询时,是否有使用 Queryable 的方法。从关键字语法中选择许多方法?
为了
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(' ')