Can I define custom "surround with" templates in Visual Studio 2008?
|
feedback
|
|
Here you go, this is an example to set everything selected inside {} In tools, codesnipet manager.
| |||||||
feedback
|
|
I have an example for you. This snippet will surround the selected text with
The steps to make this example are this:
The snippet is now ready for use. Try it using a relevant scenarie, for instance a XML file. Select some data and click Ctrl+K and Ctrl+S (or go through the menu). Locate the snippet and voila - your data has been surrounded with CDATA. | |||
|
feedback
|
|
In the event anyone else visits this question searching for more examples, here's my snippet to surround the block of code with a stopwatch:
Also, if you save it as Stopwatch.snippet in My Documents\Visual Studio ????\Code Snippets\Visual C#\My Code Snippets, then it'll automagically appear in Visual Studio without needing to visit the Tools menu. | |||
|
feedback
|