The Group
property of the MemberDescription
class represents the group to which the member belongs. This is typically specified using the [Group]
attribute. It is a string value that can be used to categorize or organize members within a type.
The Group
property of the MemberDescription
class represents the group to which the member belongs. This is typically specified using the [Group]
attribute. It is a string value that can be used to categorize or organize members within a type.
To access the Group
property, you need an instance of the MemberDescription
class. You can then retrieve or set the group name as follows:
// Assuming 'memberDescription' is an instance of MemberDescription string groupName = memberDescription.Group; // Set the group name memberDescription.Group = "Physics";