I am inspecting an assembly that has a form, and this form has some controls that are inherited from a BaseForm class.
Using GetFields I get to know its controls. However, the inherited controls do not show. I have set BindingFlags as follows:
BindingFlags flags = BindingFlags.Instance | BindingFlags.NonPublic;
Am I missing something, any ideas
Thanks in advance.