选择 - 转换元素

Select 允许你将转换应用于实现 IEnumerable 的任何数据结构中的每个元素。

获取以下列表中每个字符串的第一个字符:

List<String> trees = new List<String>{ "Oak", "Birch", "Beech", "Elm", "Hazel", "Maple" };

使用常规(lambda)语法

//The below select stament transforms each element in tree into its first character.
IEnumerable<String> initials = trees.Select(tree => tree.Substring(0, 1));
foreach (String initial in initials) {
    System.Console.WriteLine(initial);
}

输出:

O
B
B
E
H
M

.NET 小提琴现场演示

使用 LINQ 查询语法

initials = from tree in trees
           select tree.Substring(0, 1);