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

(C#) 判断相等?

时间:2014-07-27 22:43:49      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   div   ar   new   c#   log   

判断List相等

            List<string> list1 = new List<String>()
            {
                "1",
                "2",
                "3",
            };

            List<string> list2 = new List<String>()
            {
                "1",
                "2",
                "3",
            };

            bool compare1 = list1 == list2;

            bool compare2 = list1.Equals(list2); 

            bool compare3 = list1.SequenceEqual(list2);

注意: 用==, Equals对对象判断的时候,由于对象的引用地址不同,上述中的compare1, compare2 都返回为 false.  只有 compare3 是 true; 

(C#) 判断相等?,布布扣,bubuko.com

(C#) 判断相等?

标签:style   blog   color   div   ar   new   c#   log   

原文地址:http://www.cnblogs.com/fdyang/p/3871659.html

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