0

我有父母和孩子,孩子有名字。我正在尝试从包含每个给定父母子女的名称的父母那里获取字符串列表。就像是:

List<string> Names = Parent.Children.Foreach(child => "add child.name to array");

我怎样才能做到这一点?

4

1 回答 1

2

使用选择

List<string> Names = Parent.Children.Select(child => child.Name).ToList();
于 2013-02-28T22:41:53.067 回答