Skip to content

Instantly share code, notes, and snippets.

@sholfen
Created October 21, 2014 14:57
Show Gist options
  • Save sholfen/ecbf4e44f1fc701bf9a2 to your computer and use it in GitHub Desktop.
Save sholfen/ecbf4e44f1fc701bf9a2 to your computer and use it in GitHub Desktop.
C# 6.0 - Auto Properties
public class Foo
{
//auto property
public int x { get; set; } = 1;
public int y { get; set; } = 2;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment