string Fullname

robot_2Generated
code_blocksInput

Description

The Fullname field in the DisplayInfo struct represents the fully qualified name of a type or member within the Sandbox framework. This includes the namespace, parent class, and the member itself, formatted as Namespace.ParentClass.Class.Member.

Usage

Use the Fullname field to retrieve or display the complete identifier of a type or member, which can be useful for logging, debugging, or displaying information in a user interface.

Example

// 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(fullName);

// Display the full name in a UI component
// uiComponent.Text = fullName;