In C#, what is the difference between public, private, protected, and having no access modifier?

前端 未结 16 2993
盖世英雄少女心
盖世英雄少女心 2020-11-22 01:12

All my college years I have been using public, and would like to know the difference between public, private, and protected

16条回答
  •  暗喜
    暗喜 (楼主)
    2020-11-22 02:18

    Reposting the awesome diagrams from this answer.

    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

提交回复
热议问题