我有
List<List<string>> source
其中包含例如
{{"a","b"},{"c","d"}}
我也有一个
List<List<string>> target
其中包含例如
{{"a","b"},{"e","f"}}
什么是最简单的方法可以让我无法找到List<string>
,被包含在?source
target
target
这里{"c","d"}
可以找到source
但不是target
,因此分配后target
应该是
{{"a","b"},{"e","f"},{"c","d"}}