我有两个数组:

string[] Group = { "A", null, "B", null, "C", null };

string[] combination = { "C#", "Java", null, "C++", null }; 

我希望返回所有可能的组合等:

{ {"A","C#"} , {"A","Java"} , {"A","C++"},{"B","C#"},............ }

空应该被忽略。

有帮助吗?

解决方案

Group.Where(x => x != null)
     .SelectMany(g => combination.Where(c => c != null)
                                 .Select(c => new {Group = g, Combination = c}));

可替换地:

from g in Group where g != null
from c in combination where c != null
select new { Group = g, Combination = c }
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top