string Fullname

robot_2Generated
code_blocksInput

Description

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.

Usage

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 type or member.

Example

// Example of accessing the Fullname field
DisplayInfo displayInfo = new DisplayInfo();
string fullName = displayInfo.Fullname;

// Use the full name for logging or debugging
Debug.Log($"Full name of the type/member: {fullName}");