在c#中使用标签时,是否可以更改显示的字符串?我想做这样的事情:
/// <summary>
/// Do some magic on the <see cref="String">provided text</see>.
/// </summary>
public void SomeMethod(String param)
{
// Whatever
}
让开发人员看到
在
上做一些魔术provided text
,但是在单击时可以重定向到String
类。
以下是显示我的问题的图像:
答案 0 :(得分:1)
好吧,目前尚不可能,因为documentation中没有对此进行描述,但是此功能是 supported in the past。
我在C# Language Design repository over at GitHub处创建了一个提案,并且可以在here找到类似功能的提案。希望将来会支持!