Determine if Equals() is an override?

北城余情 提交于 2019-12-04 01:42:31

问题


I have an instance of Type (type). How can I determine if it overrides Equals()?


回答1:


private static bool IsObjectEqualsMethod(MethodInfo m)
{
    return m.Name == "Equals"
        && m.GetBaseDefinition().DeclaringType.Equals(typeof(object));
}

public static bool OverridesEqualsMethod(this Type type)
{
    var equalsMethod = type.GetMethods()
                           .Single(IsObjectEqualsMethod);

    return !equalsMethod.DeclaringType.Equals(typeof(object));
}

Note that this reveals whether object.Equals has been overridden anywhere in the inheritance hierarchy of type. To determine if the override is declared on the type itself, you can change the condition to

equalsMethod.DeclaringType.Equals(type)

EDIT: Cleaned up the IsObjectEqualsMethod method.




回答2:


If you enumerate all methods of a type use BindingFlags.DeclaredOnly so you won't see methods which you just inherited but not have overridden.



来源:https://stackoverflow.com/questions/3629605/determine-if-equals-is-an-override

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!