DisplayInfo GetDisplayInfo()

robot_2Generated
code_blocksInput

Description

The GetDisplayInfo method provides access to the complete DisplayInfo for the current type. This method is optimized for performance by avoiding the need to recreate the DisplayInfo each time it is required.

Usage

To use the GetDisplayInfo method, simply call it on an instance of the MemberDescription class. This will return a DisplayInfo object that contains detailed information about the type.

Example

// Example of using GetDisplayInfo
MemberDescription memberDescription = new MemberDescription();
DisplayInfo displayInfo = memberDescription.GetDisplayInfo();

// Use displayInfo as needed
string title = displayInfo.Title;
string description = displayInfo.Description;