I\'d like to create an internal auto-property:
internal bool IP { get; protected internal set; }
I thought it would be possible to make the
Considering what Jon Skeet mentioned (and user59808's comment), wouldn't this achieve the desired result?
protected internal bool IP { get; protected set; }