The Fullname
field in the DisplayInfo
struct represents the complete name of a type or member, including its namespace and any parent classes. This field is useful for uniquely identifying a type or member within the codebase.
The Fullname
field in the DisplayInfo
struct represents the complete name of a type or member, including its namespace and any parent classes. This field is useful for uniquely identifying a type or member within the codebase.
Use the Fullname
field when you need to retrieve or display the fully qualified name of a type or member. This can be particularly useful for logging, debugging, or when working with reflection to ensure you are referencing the correct entity.
// Example of accessing the Fullname field DisplayInfo displayInfo = new DisplayInfo(); string fullName = displayInfo.Fullname; // Use the fullName variable as needed, for example: // Log the full name Log.Info($"Full name of the type/member: {fullName}");