Skip to content

Instantly share code, notes, and snippets.

@dfmartin
dfmartin / uglyPropertyDefault.cs
Last active August 27, 2015 03:55
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; }