Own double-tab templates in Visual Studio 2012

后端 未结 2 1199
有刺的猬
有刺的猬 2021-01-22 22:40

So there\'s a trick in Visual Studio, that when you type, for example \'for\', and double-press the Tab key, Visual Studio will create

for (int i = 0; i < len         


        
相关标签:
2条回答
  • 2021-01-22 23:15

    You are probably referring to code snippets. The docs explain how to create new snippets and how to add them. It might be easiest to create new ones based on existing snippets that can be found in the folder C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC#\Snippets\1033\Visual C# (depending on your VS version and OS).

    0 讨论(0)
  • 2021-01-22 23:33

    In visual studio has more default snippets which is in

    C:\Program Files (x86)\Microsoft Visual Studio (#Version)\VC#\Snippets\1033

    file path as a xml format.

    Also we can add some more custom snippets to our local machine.This is machine specific.

    click here for dotnetperls documentation about snippets

    0 讨论(0)
提交回复
热议问题