在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类.
这是显示我的问题的图像:
最佳答案 好的,所以目前这是不可能的,因为它没有在
documentation中描述,但这个功能是
supported in the past.
我在C# Language Design repository over at GitHub创建了一个提案,并且可以在here找到类似功能的提案.希望将来支持这个提议!