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
protected internal is less restrictive than either protected or internal because it allows both its subclasses (protected) and anything in the same assembly (internal) to access something.
protected internal
protected
internal