VB.NET 中有自动属性的代码片段吗?
在 Visual Studio 2010 中,对于 VB.NET,“属性”+ Tab + Tab 插入完整的属性实现。是否还有另一个用于插入自动属性的片段?
In Visual Studio 2010, for VB.NET, the "Property" + Tab + Tab inserts a full property implementation. Is there another snippet for inserting an autoproperty?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需将其放入名为 C:\Users\\Documents\Visual Studio 2010\Code Snippets\Visual Basic\My Code Snippets\DefaultProperty.snippet 的文件中,然后重新启动 VS...或者将其放入该文件中但不在该目录中,然后在 VS 中单击“工具”、“代码片段管理器”,然后选择“Visual Basic”作为语言...单击“导入”按钮。选择新文件,然后选择顶部文件夹“我的片段”。现在,在 IDE 中只需键入 PropDefAuto 和 tab tab。请随意修改该文件。
Just put this in a file called C:\Users\\Documents\Visual Studio 2010\Code Snippets\Visual Basic\My Code Snippets\DefaultProperty.snippet and restart VS... or put it in that file but not in that dir, then in VS click Tools, Code Snippets Manager, and Select Visual Basic as the language... the click on the Import button. Select your new file, and then choose the top folder "My Snippets". Now in the IDE just type PropDefAuto and tab tab. Feel free to modify the file.
目前在 VB 中最接近的就是打字。
您可以在 此博客,作者:The Gu
The closest you can currently get in VB is typing out
You can find more information in this blog post by The Gu