C# code snippets for Visual Studio. ctor1 and ctor2 creates a constructor taking one respective two arguments. propnotify and propnotify1st is useful when implementing INotifyPropertyChanged. They are basically the propfull snippet but with a call to RaisePropertyChanged() added.

Snippet to create a constructor taking one argument:

Snippet to create a constructor taking two arguments:

Snippet to create a property that calls RaisePropertyChanged(). Cursor is left on the RaisePropertyChanged() line so that you can CTRL+. add an implementation for the method:

Snippet to create a property that calls RaisePropertyChanged(). Cursor is positioned after the property definition, ready to add another line of code: