使用PropertyDescriptor可以确定属性是否在当前类中被覆盖



如果我有:

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

我如何确定类B上的所有者属性是使用TypeDescriptor.GetProperties(type)方法的重写属性?

基于@DaveShaw的评论和使用propertyInfo:

对类似问题的回答
var property = TypeDescriptor.GetProperties(typeof(B)).Find("Owner", false).ComponentType.GetProperty("Owner");
var getMethod = property.GetGetMethod(false);
bool isOverride = getMethod.GetBaseDefinition() != getMethod;

相关内容

  • 没有找到相关文章

最新更新