using System.Reflection.Metadata; // Load the metadata reader object MetadataReader reader = ... // Get field definition FieldDefinition fieldDef = reader.GetFieldDefinition(fieldToken);Brief Description: The code above shows how to fetch the field definition of a metadata using the GetFieldDefinition method in the MetadataReader class. Package Library: The MetadataReader class is part of the System.Reflection.Metadata package library.