Skip to content

Instantly share code, notes, and snippets.

@dfmartin
Last active August 27, 2015 03:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dfmartin/c2ce25e7469373b112cf to your computer and use it in GitHub Desktop.
Save dfmartin/c2ce25e7469373b112cf to your computer and use it in GitHub Desktop.
Ugly property defaults
private string _firstName = "John";
private string _lastName = "Doe";
public string FirstName {
get { return _firstName; }
set { _firstName = value; }
}
public string LastName {
get { return _lastName; }
set { _lastName = value; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment