Invoking Private / Protected Methods Via Reflection From The Same Object Instance (or Base)
问题 Is it possible to call a protected method via reflection. I am using this: Me.GetType.InvokeMember(Stages(CurrentStage), Reflection.BindingFlags.InvokeMethod, Nothing, Me, Nothing) Which always calls a method with no params or return. The idea is that the user of my object (transactional processing of business logic) inherits the base class adds in a load of private methods to fire. They then add these method names to a list in the order they would like them fired and the code above will take