"Immutable Auto-Properties"

class MyClass {
	public string Name { get; }
	
	public MyClass(string name) {
		Name = name; // Can be initialized in constructor
	}
}


Code snippet taken from "Complete C# Quick Reference - C# 5 and C# 6".