VB.NET和Visual Studio Intellisense中的多行XML注释

前端之家收集整理的这篇文章主要介绍了VB.NET和Visual Studio Intellisense中的多行XML注释前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图在VB.Net中的 XML评论添加换行符.我读了另外两篇关于C#的帖子,

XML multiline comments in C# – what am I doing wrong?

Adding line breaks to comments for Intellisense

但是建议的< para>或< br />标签不起作用这个,

''' <summary>
    ''' <para>Line one</para><br />
    ''' <para>Line two</para><br />
    ''' </summary>
    ''' <value></value>
    ''' <returns></returns>
    ''' <remarks></remarks>
    Public Property Speed As Double

仍然如下所示:

我该怎么做这个工作?

随着时间的推移,错误得到修复.这在Visual Studio 2015 Update 3中现在有效:

(它可能在早期版本中也可以工作,但是我没有安装它们.)

原文链接:https://www.f2er.com/vb/255598.html

猜你在找的VB相关文章