If I use
sometype.GetProperties();
I get all of the properties from the type and it's parent. However I only want to retrieve the properties defined explicitly in this type (not the parents). I though that was what the BindingFlags.DeclaredOnly option was for. However, when I try this:
sometype.GetProperties(BindingFlags.DeclaredOnly);
...I get 0 properties.
Anyone know what I am doing wrong?
To all who come from google:if you still can't get your "properties" even after setting flags, if you're new to c# and don't know the difference betweenPropertiesandFields, try usingGetFields(). You've probably been looking forfieldsall along! – user1306322 Aug 30 '12 at 6:36