代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
C#
】
比较两个list集合,两集合同时存在或A集合存在B集合中
作者:
新雨
/ 发布于
2017/11/13
/
727
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; using System.Threading.Tasks; namespace Sample3 { class Program { static void Main(string[] args) { var student1 = new List<student>(); student1.Add(new student() { name = "张三", subject = "英语", score = 89 }); student1.Add(new student() { name = "李四", subject = "英语", score = 95 }); student1.Add(new student() { name = "王五", subject = "英语", score = 69 }); student1.Add(new student() { name = "李倩", subject = "英语", score = 99 }); var student2 = new List<student>(); student2.Add(new student() { name = "李四", subject = "英语", score = 95 }); student2.Add(new student() { name = "王五", subject = "数学", score = 69 }); student2.Add(new student() { name = "赵六", subject = "数学", score = 100 }); //var exp1 = student1.Where(a => student2.Any(t => a.name.Contains(t.name))).ToList(); //使用Exists同样可以实现 字面上应该更好理解,而且效率要高些 var exp1 = student1.Where(a => student2.Exists(t => a.name.Contains(t.name))).ToList(); Console.WriteLine("--查找student1和student2总同时存在的数据--"); foreach (var item in exp1) { Console.WriteLine("{0} \t {1} \t {2}", item.name, item.subject, item.score); } //var exp2 = student1.Where(a => student2.All(t => !a.name.Contains(t.name))).ToList(); //使用Exists同样可以实现 字面上应该更好理解,而且效率要高些 var exp2 = student1.Where(a => !student2.Exists(t => a.name.Contains(t.name))).ToList(); Console.WriteLine("--查找student1集合中存在,而student2不存在的数据--"); foreach (var item in exp2) { Console.WriteLine("{0} \t {1} \t {2}", item.name, item.subject, item.score); } Console.Read(); /* --查找student1和student2总同时存在的数据-- 李四 英语 95 王五 英语 69 --查找student1集合中存在,而student2不存在的数据-- 张三 英语 89 李倩 英语 99 */ } } public class student { /// <summary> /// 姓名 /// </summary> public string name; /// <summary> /// 科目 /// </summary> public string subject; /// <summary> /// 分数 /// </summary> public int score; } }
试试其它关键字
同语言下
.
C#实现的html内容截取
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
.
实现对图片上传的接收
.
去除字符串中的空格,回车,换行符转变成‘;’在按‘
.
按照回车换行符分割字符串
.
文件MD5码 比较,检测文件是否一样
可能有用的
.
C#实现的html内容截取
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
.
实现对图片上传的接收
.
去除字符串中的空格,回车,换行符转变成‘;’在按‘
.
按照回车换行符分割字符串
.
文件MD5码 比较,检测文件是否一样
新雨
贡献的其它代码
(
9
)
.
实现JS复制、粘贴,Chrome/Firefox下可用
.
13位时间戳转换为10位
.
实现MySQL数据库导入
.
替换字符串一些部分为星号达到保密效果
.
比较两个list集合,两集合同时存在或A集合存在B集合中
.
查看表中某个字段的属性
.
控制文本框只能输入中文、英文、数字与指定特殊符号
.
RGB颜色和十六进制颜色互转
.
查看天气
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3