Skip to content

Instantly share code, notes, and snippets.

@EifelMono
Last active August 29, 2015 13:56
Show Gist options
  • Save EifelMono/9330717 to your computer and use it in GitHub Desktop.
Save EifelMono/9330717 to your computer and use it in GitHub Desktop.
Code Template propf => property with member field
#region Property $name$
private $type$ m_$name$= $value$;
public $type$ $name$
{
get
{
return m_$name$;
}
set
{
m_$name$ = value;
}
}
#endregion
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment