vb.net - 自动 XML 注释 - ''' -- 我可以更改自动默认值吗?

发布于 2024-08-08 20:27:36 字数 343 浏览 7 评论 0原文

我在 VB.NET 中使用 Visual Studio 2008 SP1

,当我在函数上方键入 ''' 时,会出现一些自动默认 XML 注释:

''' <summary>
''' 
''' </summary>
''' <remarks></remarks>

我希望改为以下内容:

''' <summary></summary>
''' <remarks></remarks>

有没有办法更改当您在函数上方输入 ''' ?

I'm using Visual Studio 2008 SP1

in VB.NET, when I type ''' above a function, some automatic default XML comments appear:

''' <summary>
''' 
''' </summary>
''' <remarks></remarks>

I would like this to be the following instead:

''' <summary></summary>
''' <remarks></remarks>

Is there a way to change what appears when you type ''' above a function?

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

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

发布评论

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

评论(3

标点 2024-08-15 20:27:36

它们的关键位于 VBXMLDoc.xml 文件中。它为 VB.NET 中的所有 XML 注释提供模板。还没有检查是否有 C# 的解决方案。我花了很长时间才想要它用于 C#,但实际上只是习惯了丑陋的默认格式。

如何自定义 Visual Basic 代码编辑器插入的 XML 注释?

They key is in the VBXMLDoc.xml file. It provides templating for all of the XML comments in VB.NET. Still have not checked if there is a solution for C#. I went so long in wanting it for C#, but have actually just gotten used to the ugly default format.

How to Customize the XML Comments that are inserted by the Visual Basic Code Editor?

少钕鈤記 2024-08-15 20:27:36

在我的最后一个地方,我们编写了一个 VBA 宏来为我们插入注释,然后将其绑定到热键。这使我们能够编写自己的自定义注释块,其中包含附加参数和大量已存在的信息。

查看这篇文章了解完整的详细信息:
http://msdn.microsoft.com/en-us/magazine/cc163757。 ASPX

At my last place we wrote a VBA macro to insert the remarks for us and then bound it to a hotkey. This allowed us to write ouw own custom comment blocks with additional parameter and a good deal of the information already present.

Check out this article for the full details:
http://msdn.microsoft.com/en-us/magazine/cc163757.aspx

你不是我要的菜∠ 2024-08-15 20:27:36

使用 GhostDoc!
:-)

use GhostDoc!
:-)

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