Overview of C# 6.0 Language Improvements
Inline Property Initializers and Read-Only Auto-Properties Properties can now be initialized directly at their declaration, eliminating the need for a constructor. Additionally, getter-only auto-properties can be assigned during initialization. public class Employee { public int Id { get; set; } = 0...