How to obtain summary annotation information for property in C #? for example:
/// <summary>
/// CDto
/// </summary>
public class CDto
{
/// <summary>
/// 名称
/// </summary>
public string Name { get; set; } = string.Empty;
}
How to obtain a summary comment for the Name property of the above code?
Looking forward to a specific implementation method, I am using .net7