var list1 = new List<int> { , , , , , , ,  };

var list2 = new List<int> { , , , , , , , ,  };
// List1:1 3 5 7 9 11 13 15
Console.WriteLine("List1:" + string.Join("\t", list1));
// List2:1 2 3 4 5 6 7 8 9
Console.WriteLine("List2:" + string.Join("\t", list2));
// 差集-List1有List2无:11 13 15
Console.WriteLine("差集-List1有List2无:" + string.Join("\t", list1.Except(list2)));
// 交集-List1有List2有:1 3 5 7 9
Console.WriteLine("交集-List1有List2有:" + string.Join("\t", list1.Intersect(list2)));
// 并集-包含List1和List2:1 3 5 7 9 11 13 15 2 4 6 8
Console.WriteLine("并集-包含List1和List2:" + string.Join("\t", list1.Union(list2)));
Console.ReadLine();

最新文章

  1. GroupJoin和Join的声明及调用
  2. dedecms /member/pm.php SQL Injection Vul
  3. (转) C# textbox 限制输入问题
  4. LotusPhp中配置文件组件LtConfig详解
  5. .Net中JS调用后台的方法
  6. poj 2553 The Bottom of a Graph【强连通分量求汇点个数】
  7. MapReduce执行过程源码分析(一)&mdash;&mdash;Job任务的提交
  8. 如何在settings里的休眠模式里添加永不休眠
  9. ConcurrentSkipListMap深入分析
  10. 1.1专题介绍「深入浅出ASP.NET Core系列」
  11. usb输入子系统写程序(三)
  12. 实现对HashMap的value排序
  13. 简明的Python教程当中的几个疑惑点分析#1
  14. Spring错误小结
  15. &lt;Differential Geometry of Curves and Surfaces&gt;(by Manfredo P. do Carmo) Notes
  16. Spring read-only=&quot;true&quot; 只读事务的
  17. python使用paramiko自动化部署linux程序
  18. Asp.Net操作MySql数据库增删改查
  19. AbpZero之企业微信---登录(拓展第三方auth授权登录)---第二步:开始逐步实现企业微信登录
  20. php爬虫学习笔记1 PHP Simple HTML DOM Parser

热门文章

  1. OptionParser模块学习
  2. 内部存储 openFileInputStream openFileOutputStream
  3. Html的Padding,Margin自己理解图
  4. swagger ui js 错误:Failed to execute &#39;serializeToString&#39; on &#39;XMLSerializer&#39;: parameter 1 is not of type &#39;Node&#39;.
  5. YAML教程
  6. 老板说你的UI设计的不高级?你肯定没用这7个技巧...
  7. 参看dll参数类型
  8. Laravel5.4 Oauth2.0认证应用 API 实战!
  9. [Eclipse]Eclipse里对XML进行注释的快捷键
  10. Debian8 下面 muduo库编译与使用