Description
The Group
property of the TypeDescription
class represents a string that categorizes or groups the type within the Sandbox environment. This can be useful for organizing types into logical collections or categories, which can aid in type management and discovery.
Usage
Use the Group
property to retrieve or assign a category to a type described by TypeDescription
. This property is particularly useful when you need to organize types into specific groups for easier management or when implementing custom logic based on type categories.
Example
// Example of accessing the Group property
TypeDescription typeDescription = new TypeDescription();
string group = typeDescription.Group;
// Example of setting the Group property
typeDescription.Group = "Physics";