有没有可能,有一个常数
public const string MyString = "myValue"
在 xml 注释中获取其值“myValue”?我对此感兴趣以生成招摇文档。
/// <summary>
/// Creates a new resource.
/// </summary>
/// <param name="request">The request object.</param>
/// <returns code="200">The id of the new resource.</returns>
/// <response code="400">
/// <see cref="Errors.BadRequestCodes.MyString"/><para/>
/// </response>
这是一个记录端点的例子。在 swagger ui 中,我实际上看到的是“Errors.BadRequestCodes.MyString”,而不是在 400 状态代码部分看到消息“myValue”。有没有办法做到这一点?