Here are some I love:
// $type$: $END$ ($user$ on $time$)
- Shortcut comfor comment
- $type$:- TODOis default; first editable
- $user$: evaluated to current user name
- $time$: evaluated to current date/time
private readonly Logger _logger = LogManager.GetCurrentClassLogger();
System.Diagnostics.Debug.Assert($condition$, "$condition$");
- Shortcut asfor assertion
- It is far more productive than the predefined asrttemplate, because it automatically prints out the condition to the assertion dialog
System.Diagnostics.Debug.Assert($condition$, "$condition$", "$END$");
- Shortcut asdfor assertion detail
- If you need some more explanation for the assertion
But, always try to ask yourself, what do you type most. Most valuable live templates will differ from domain to domain.
Apart from that, I really like your tt template. I just added it to my templates :) Also I started a new file template that creates the whole default skeleton of a test class.