In C#, when I'm reflecting over a derived type, how come I don't see base classes' static fields?
I've tried both type.GetFields(BindingFlags.Static) and type.GetFields().
|
In C#, when I'm reflecting over a derived type, how come I don't see base classes' static fields? I've tried both |
||||
|
|
|
This is how it works.
|
|||||||||||||||
|
|
Set the BindingFlags.FlattenHierarchy enumeration to Static and this will also search static members. More information: http://msdn.microsoft.com/en-us/library/system.reflection.bindingflags.aspx |
|||
|
|
|
Your type is just your type - it doesn't include base types. You'll need to use You should probably take a look at the BindingFlags documentation to accomplish what you need. |
|||
|
|
|
Because they belong to the base type, and are not inherited. Move up to that type, and you'll find them. -- Edit Mehrdad has the correct answer, but just for completeness:
|
||||
|
|