LINQ的Except方法

在两个集合中,左边集合减去右边集合的元素:

 

source code:

 List<int> a = new List<int>{
                { 3 }, { 5 }, { 7 }
            };

            List<int> b = new List<int> {
                { 5 }, { 6 }, { 9 }
            };

            var result = a.Except(b);

            result.ForEach(delegate (int n)
            {
                WriteLiteral(n + "<br>");
            });



posted @ 2016-04-10 14:48  Insus.NET  阅读(4752)  评论(4编辑  收藏  举报