Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/visual-studio/8.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C# 如何强调工具提示中显示的xml文档中的单词?_C#_Visual Studio_Resharper_Xml Documentation - Fatal编程技术网

C# 如何强调工具提示中显示的xml文档中的单词?

C# 如何强调工具提示中显示的xml文档中的单词?,c#,visual-studio,resharper,xml-documentation,C#,Visual Studio,Resharper,Xml Documentation,xml文档中是否有要强调(粗体、斜体或其他)单词的标记?例如,在: /// <summary> /// Bla bla... /// <para> /// Important: take care of the wolf. /// </para> /// </summary> // ///布拉布拉。。。 /// ///重要事项:照顾好狼。 /// /// 当我在Visual Studio中将鼠标悬停在成员上方时,我不想在工具提示中强调“重

xml文档中是否有要强调(粗体、斜体或其他)单词的标记?例如,在:

/// <summary>
/// Bla bla...
/// <para>
/// Important: take care of the wolf.
/// </para>
/// </summary>
//
///布拉布拉。。。
/// 
///重要事项:照顾好狼。
/// 
/// 
当我在Visual Studio中将鼠标悬停在成员上方时,我不想在工具提示中强调“重要”(粗体/斜体/whatever)(顺便说一句,我使用的是VS 2015和R#2016)

我试过
,但其中没有一种似乎有效。我不知道这是否可行。

VS(截至2015年)工具提示不支持格式化

但是ReSharper的“快速文档”功能(Ctrl+Shift+F1)能够以格式显示文本

在文档页面上列出了所有推荐/支持的标签。其中没有一个会在工具提示中格式化。我甚至不知道这个“快速文档”的东西。仅用于记录:在R#键盘方案中,它在(Ctrl+Q)下可用。