如何在 Visual Studio 2010 中制作实时模板?
如何在 Visual Studio 2010 中制作实时模板,我不知道它是真正的实时模板还是宏,但我不想做的是当我编写代码时以及当我输入时,让我们说 ->中,然后按空格键,该程序会自动插入如下所示的代码 -> #包括<>。 在 c++ builder 中,为此目的,我们使用 xml 文件,当我们调用它时,它会自动插入文本,在这种情况下,我们将写入它的名称(in),对其的反应将是 #include <>。
那么有没有人可以告诉我一些建议,或者解决这个谜团的好链接:)
How to make live template in Visual studio 2010, I don't know is it really live template or macro, but what I wan't to do is when I'm write code and when I type let's say -> in, and press space, that program automatically insert code that look like this -> #include <>.
In c++ builder for that purpose we use xml file who is automatically insert text when we call it, in this case we will write it name (in), and reaction on it will be #include <>.
So is there someone who can tell me some advice, or good link to solve that mystery :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
商业(非免费)插件 Visual Assist 可能值得一看。它有一个名为 VA Snippets 的功能,可以执行您所描述的操作。
The commercial (not free) addin Visual Assist may be worth looking at. It has a feature called VA Snippets that does what you describe.