Skip to content

Instantly share code, notes, and snippets.

@rasor
Created September 13, 2013 05:35
Show Gist options
  • Save rasor/6547058 to your computer and use it in GitHub Desktop.
Save rasor/6547058 to your computer and use it in GitHub Desktop.
New up an object in a property
private PersonModel _person;
public PersonModel SomePerson
{
get { return _person ?? (_person = new PersonModel()); }
set { _person = value; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment