加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

c# – 在`SetEquals`中为元素执行哪个等式检查?

发布时间:2020-12-16 01:55:33 所属栏目:百科 来源:网络整理
导读:我们有 SetEquals 方法来检查不同的集合类型是否相等.但是会对元素执行什么样的等式测试呢?会使用Equals还是ReferenceEquals? 在API它只是声明: Determines whether the current set and the specified collection contain the same elements 解决方法 它
我们有 SetEquals方法来检查不同的集合类型是否相等.但是会对元素执行什么样的等式测试呢?会使用Equals还是ReferenceEquals?

在API它只是声明:

Determines whether the current set and the specified collection
contain the same elements

解决方法

它是“集合用来考虑元素相等的那个”,即与Add和Contains相同的那个.例如:

var set = new HashSet<string>(StringComparer.OrdinalIgnoreCase)
{
    "abc","def"
};
var list = new List<string> { "ABC","DEF" };
Console.WriteLine(set.SetEquals(list)); // True

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读