本文概述
- LINQ Except方法的语法
- LINQ except方法的示例
这是LINQ Except方法的图形表示。
文章图片
如上图所示, 它将从第一个集合中返回元素, 而第二个集合中不存在该元素。
LINQ Except方法的语法 使用LINQ Except方法从第一个列表获取元素的语法, 该元素在第二个列表中不存在。
var result = arr1.Except(arr2);
根据以上语法, 我们正在比较两个列表” arr1″ , ” arr2″ , 并使用Except()方法获取元素。
LINQ except方法的示例 【LINQ except方法】这是LINQ Except方法的示例, 该方法从第一个集合中获取元素。
using System;
using System. Collections;
using System.Collections.Generic;
using System. Linq;
using System. Text;
using System.Threading.Tasks;
namespace ConsoleApp1
{
class Programme2
{
static void Main(string[] args)
{
//create an array 'a' and 'b' type of string having the values
string[] a = { "Rohini", "Suresh", "Sateesh", "Praveen" };
string[] b = { "Madhav", "Sushmitha", "Sateesh", "Praveen" };
//Except method is used to return the value which does not exist in the second list
var result = a.Except(b);
foreach (var item in result)
{
Console.WriteLine(item);
}
Console.ReadLine();
}
}
}
输出
文章图片
推荐阅读
- LINQ SequenceEqual方法
- LINQ distinct方法
- LINQ相交方法
- LINQ联合方法
- LINQ集合操作
- LINQ group连接
- LINQ Single()方法
- LINQ交叉连接
- LINQ左外连接