Skip to content

Instantly share code, notes, and snippets.

@richlander
Created July 20, 2015 19:06
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save richlander/29c5086e3e64000f7c56 to your computer and use it in GitHub Desktop.
Save richlander/29c5086e3e64000f7c56 to your computer and use it in GitHub Desktop.
C# 6 Read-only Auto-Properties
public class Customer
{
public string First { get; } = "Jane";
public string Last { get; } = "Doe";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment