What is the meaning of the planned “private protected” C# access modifier?

前端 未结 6 1395
名媛妹妹
名媛妹妹 2020-12-02 05:49

As part of the Roslyn documentation on GitHub, there\'s a page called Language feature implementation status, with planned language features for C# and VB.

One featu

6条回答
  •  猫巷女王i
    2020-12-02 06:33

    Here are all access modifiers in Venn diagrams, from more limiting to more promiscuous:

    private:
    enter image description here

    private protected: - added in C# 7.2
    enter image description here

    internal:
    enter image description here

    protected:
    enter image description here

    protected internal:
    enter image description here

    public:
    enter image description here

提交回复
热议问题