How to tell if MemberInfo represents an override
问题 Given the following code: public class Base { public virtual void Method() { } } public class Derived : Base { public override void Method() { } } ... var baseMethodInfo = typeof(Base).GetMember("Method")[0]; var derivedMethodInfo = typeof(Derived).GetMember("Method")[0]; Is it possible to determine if the derivedMethodInfo represents a method declaration which overrides another in a base class? In another question it was observed that had Method been declared abstract (and not implemented)