"Auto-Property Initializers"
class MyClass { public string Name { get; } = "Ben"; public int Age { get; set; } = 30; }
Code snippet taken from
"Two Decades of C#: A Reference - C# 5 and C# 6"
.