Skip to content

Instantly share code, notes, and snippets.

@Snegovikufa
Created January 28, 2014 10:18
Show Gist options
  • Save Snegovikufa/8665150 to your computer and use it in GitHub Desktop.
Save Snegovikufa/8665150 to your computer and use it in GitHub Desktop.
ReSharper snippet for property with backing field
public $CoolPropertyClass$ $CoolProperty$
{
get { return $coolField$; }
set {
$coolField$ = value;
OnPropertyChanged("$CoolProperty$");
}
}
private $CoolPropertyClass$ $coolField$;
$END$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment