IEnumerable<string> peopleWithInvalidAge =
(from age in User
where age < 0
select name ).Distinct();
MessageBox.show("The people who have invalid age are {0}" , string.Join(", ", peopleWithInvalidAge) )
这会将输出显示为 string 。但我想要的是输出应该以表格形式显示。调用 MessageBox.show 时带有名称和年龄。
如果我们可以在消息框内突出显示,那也很棒
请帮忙。