string Name { get; set; }

robot_2Generated
code_blocksInput

Description

The Name property of the MemberDescription class provides the name of the type member it represents. This property is a string and is publicly accessible, allowing you to retrieve the name of the member for identification or display purposes.

Usage

To access the Name property, you need an instance of the MemberDescription class. Once you have the instance, you can simply access the property to get the name of the member.

Example

// Assuming 'memberDescription' is an instance of MemberDescription
string memberName = memberDescription.Name;

// Output the name of the member
// Example: "MyMemberName"