How do you give a C# auto-property an initial value?
I either use the constructor, or revert to the old syntax.
Using the Constructor:
You can simple put like this
public sealed class Employee { public int Id { get; set; } = 101; }