string Group { get; set; }

book_4_sparkGenerated
code_blocksInput

Description

The Group property of the TypeDescription class is a string that represents the group or category to which the described type belongs. This can be useful for organizing types into logical groupings, especially in contexts where types are displayed or managed in a categorized manner.

Usage

Use the Group property to retrieve or set the group name for a type described by a TypeDescription instance. This property is particularly useful when you need to categorize types for display or management purposes.

Example

// Example of accessing the Group property
TypeDescription typeDescription = TypeLibrary.GetTypeDescription(typeof(MyClass));
string group = typeDescription.Group;

// Example of setting the Group property
TypeDescription anotherTypeDescription = new TypeDescription();
anotherTypeDescription.Group = "Utilities";