What are some macros that you have found useful in Visual Studio for code manipulation and automation? Since good code can be useful in all languages, this question is not language specific.
|
5
|
|
|
|
|
|
I use this one alot:
What this allows you do, is only execute some code if something (a variable or expression or whatever) is true, or false, or greater than something. It's pretty handy. |
||||||
|
|
|
Anything else like that |
||
|
|
|
|
The best is the if snippet in C#
Also works with the while loop, for loop, foreach loop. There is a good property one. Here is a snippet I wrote for ViewState properties.
|
||
|
|
|
|
Heh, i have the same kind of code snippet for the viewstate property, which i use while developping in vb.net
I discovered these powerful tools only recently; for me, their use through shortcuts is really useful. As a matter of fact, i think in future projects i will go as far as abstracting parts of the framework i'll be working with into snippets, assign them meaningful names and distribute them to the team; on the other hand, i could lead to code repetition, things that could be better handled by factoring the code... |
||
|
|
|
|
Mostly I use snippets in my C# coding, but I have found property snippets to be very useful and time-saving. Caveat: You may not like the variable naming/indentation, etc. but rather than start a religious war in an otherwise peaceful question, remember that its easy to tweak these snippets for your own, custom conventions. Streamlined "prop" snippet Visual Studio comes pre-equipped with a "prop" snippet, but it makes you enter four fields (name and type of both the property and backing field). I found that in many cases, two entries was fine. Further more, the default "prop" had some weird indention stuff going on. (Isn't the point to MINIMIZE keystrokes?) So I customized and updated the snippet:
If you use this, you will probably want to back up your existing "prop" snippet either by renaming it in its .snippet file or moving to another directory. Otherwise you will get two "prop" entries in the VS UI. "prop_databound" snippet In order for .NET databinding to go smoothly, having a "Changed" event is recommended. Many controls will use this to notify your properties value has updated. However, its a tedious process to generate this for each public property. "prop_databound" creates the property, backing field, event, and a function for manually triggering the event. You may not need/use all of that at once, but its easier to delete a section than it is to type it all!
"prop_lazy" snippet I threw this in as well...This is just a property with lazy instantiation, i.e. the backing field does not allocate an object until its first use. This can be useful in certain scenarios.
Snippet XML |
|||
|
|
|
I modify the existing class snippet to include |
||
|
|
|
|
Memory Jogging :
|
|
|
Dispose pattern
Event definitionIncludes special versions for EventHandler and PropertyChangedEventHandler
Dispose Source
Event Source
|
||
|




