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

发布于 2024-11-29 20:43:33 字数 846 浏览 2 评论 0原文

我正在尝试在 VB.Net 中的 XML 注释中添加换行符。我读过另外两篇关于 C# 的文章,

XML 多行C# 中的注释 - 我做错了什么?

为 Intellisense 注释添加换行符

但建议的 ;
标签不起作用。这

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

仍然看起来像这样:

在此处输入图像描述

我怎样才能做到这一点?

I'm trying to put newlines in my XML Comments in VB.Net. I've read two other posts about C#,

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

Adding line breaks to comments for Intellisense

But the suggested <para> or <br/> tags don't work. This,

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

Still appears like this:

enter image description here

How can I make this work?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

眼前雾蒙蒙 2024-12-06 20:43:33

随着时间的推移,错误会得到修复。此功能现在适用于 Visual Studio 2015 Update 3:

screenshot

(它也可能在早期版本中工作,但我不再安装它们。)

As time goes by, bugs get fixed. This works now in Visual Studio 2015 Update 3:

screenshot

(It might work in earlier versions as well, but I don't have them installed anymore.)

南城追梦 2024-12-06 20:43:33

现在最好使用 VS 2012,它将执行与 C# 中相同的操作

在此处输入图像描述

Now its better to use VS 2012 which will do the same as it does in C#

enter image description here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文