Hi, > Is there a way to fetch more information from a fieldDefinition? > For example, I am trying to look for all the MenuItems in a type, so for a > given field name '_menuItem1' and it's fieldDefinition, can I obtain some > more information - like the properties of that MenuItem (Text, Visible, > etc)?
You could look at the FieldDefinition's FieldType property. This returns a TypeReference that can be resolved (https://github.com/jbevain/cecil/wiki/Resolving) into a TypeDefinition. That then provides access to the field type's properties. Is that what you want? Fabian -- -- mono-cecil
