Skip to content

Instantly share code, notes, and snippets.

@brenoferreira
Created November 5, 2013 13:31
Show Gist options
  • Save brenoferreira/7319049 to your computer and use it in GitHub Desktop.
Save brenoferreira/7319049 to your computer and use it in GitHub Desktop.
Resharper template for INotifyPropertyChanged class property
private $Type$ $FieldName$;
public $Type$ $PropertyName$
{
get
{
return $FieldName$;
}
set
{
if ($FieldName$ != value)
{
$FieldName$ = value;
NotifyPropertyChanged("$PropertyName$");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment