码迷,mamicode.com
首页 > 其他好文 > 详细

List<T> 求差集

时间:2014-06-29 15:28:22      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   java   color   javascript   

bubuko.com,布布扣
List<int> a = new List<int>() { 1, 2, 3, 6, 8, 7 };
            List<int> b = new List<int>() { 1, 2, 3, 4, 5, 6 };
            List<int> c = b.Except(a).ToList();
            foreach (int i in c)
            {
                Console.WriteLine(i); //4  5  
            }
            Console.Read();
bubuko.com,布布扣

 

List<T> 求差集,布布扣,bubuko.com

List<T> 求差集

标签:style   blog   http   java   color   javascript   

原文地址:http://www.cnblogs.com/gxivwshjj/p/3755234.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!