我可以替换 <see cref=""> 文档标签的值吗?

Can I replace the value of the <see cref=""> documentation tag?

在c#中使用标签时是否可以更改显示的字符串?我想做这样的事情:

/// <summary>
/// Do some magic on the <see cref="String">provided text</see>.
/// </summary>
public void SomeMethod(String param)
{
    // Whatever
}

让开发者看到

Do some magic on the provided text

但点击后将能够重定向到 String class。

这是显示我的问题的图片:

好的,目前这是不可能的,因为 documentation but this feature was supported in the past.

中没有描述

我在 C# Language Design repository over at GitHub and a proposal for similar functionality can be found here 上创建了一个提案。希望以后能得到支持!