string Title { get; set; }

book_4_sparkGenerated
code_blocksInput

Description

The Title property of the TypeDescription class represents a string that provides a human-readable title for the type being described. This property is useful for displaying a friendly name for the type in user interfaces or documentation.

Usage

To access the Title property, you need an instance of the TypeDescription class. You can then get or set the title as needed:

Example

// Assuming 'typeDescription' is an instance of TypeDescription
string currentTitle = typeDescription.Title;

// Set a new title
string newTitle = "My Custom Type Title";
typeDescription.Title = newTitle;