Productivity in Visual Studio is important when you have code to deliver. Here are a few timesavers that I use:
Visual Studio Snippets:
Right click the snippet you want and save it to your Visual Studio snippets
directory
- notify.snippet
Implements OnNotify for INotifyPropertyChanged
- nprop.snippet
A snippet to create a property that does change notification for
INotifyPropertyChanged
- tostring.snippet
A handy snippet for creating a comprehensive ToString override for your classes.
Uses reflection to output the contents of all properties.
- propdp.snippet
The original propdp snippet for creating dependency properties in WPF whis was (wrongly I.M.O) removed by Microsoft due to silverlight compatibility issues.
- propdp8.snippet
The original propdp snippet for creating dependency properties in WPF modified to work with WPF in Windows 8 / Metro