csharp LINQPad片段声明了两个字符串数组,吐出了它们互斥的部分。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp LINQPad片段声明了两个字符串数组,吐出了它们互斥的部分。相关的知识,希望对你有一定的参考价值。

var set1 = new string[]{"a","b","c","d"};
var set2 = new string[]{"a","e","i","o","u"};

var q = set1.Except(set2);

Console.WriteLine(q.Count());
Console.WriteLine("");
foreach(string s in q)
{
Console.WriteLine(s);
}
Console.WriteLine("");

var r = set2.Except(set1);

Console.WriteLine(r.Count());
Console.WriteLine("");
foreach(string s in r)
{
Console.WriteLine(s);
}
Console.WriteLine("");

以上是关于csharp LINQPad片段声明了两个字符串数组,吐出了它们互斥的部分。的主要内容,如果未能解决你的问题,请参考以下文章

在LINQPad中使用FreeSql查询数据库

LINQPad,使用多个datacontexts

JAVA简单问题

text 在LinqPad中快速简单地帮助渲染字符

text 在LinqPad中快速简单地帮助渲染字符

java两个数组合并成一个升序,最终入职阿里