c# – 使用PropertyDescriptor可以确定当前类中是否覆盖了属性

如果我有:

class A
{
    public virtual string Owner { get; set; }
}

class B : A
{
    public override string Owner { get; set; }
}

如何使用TypeDescriptor.GetProperties(type)方法确定B类上的owner属性是覆盖属性?

最佳答案 根据@ DaveShaw的评论和使用propertyInfo的类似问题的答案:

var property = TypeDescriptor.GetProperties(typeof(B)).Find("Owner", false).ComponentType.GetProperty("Owner");
var getMethod = property.GetGetMethod(false);
bool isOverride = getMethod.GetBaseDefinition() != getMethod;
点赞