gpt4 book ai didi

c# - 如何为泛型类型制作 IEqualityComparer

转载 作者:行者123 更新时间:2023-11-30 21:42:52 25 4
gpt4 key购买 nike

我想要一个 IEqualityComparer<Type>当且仅当两个泛型类型相同且忽略泛型参数时返回 true。所以comparer.Equals(typeof(List<A>), typeof(List<B>))应该返回 true .

我正在通过 Name 进行比较:

public class GenericTypeEqualityComparer : IEqualityComparer<Type>
{
public bool Equals(Type x, Type y)
{
return x.Name == y.Name;
}

public int GetHashCode(Type obj)
{
return obj.Name.GetHashCode();
}
}

存在一些误报案例(命名空间问题等)。我不知道还能做什么。

最佳答案

这是一个考虑了通用性的检查。如果 x 或 y 为空,它会抛出 NRE,所以如果您想要更强大的检查,也可以添加空检查。

public bool Equals(Type x, Type y)
{
var a = x.IsGenericType ? x.GetGenericTypeDefinition() : x;
var b = y.IsGenericType ? y.GetGenericTypeDefinition() : y;
return a == b;
}

关于c# - 如何为泛型类型制作 IEqualityComparer<Type>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42166111/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com