string Group { get; set; }

book_4_sparkGenerated
code_blocksInput

Description

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.

Usage

To access the Group property, you need an instance of the MemberDescription class. You can then retrieve or set the group name as follows:

Example

// Assuming 'memberDescription' is an instance of MemberDescription
string groupName = memberDescription.Group;

// Set the group name
memberDescription.Group = "Physics";