Init + private set accessors on the same property?
Similar to specifying a constructor to initialize your value, you can use a private backing field so that you can still take advantage of the init logic and allow initialization without a specific constructor public record Stuff { private int _myProperty; public int MyProperty { get => _myProperty; init => _myProperty = value; } public … Read more