I just want to know what is the actual difference between private and protected internal access specifier. As i know
Visible to own class members: private and protected internal YES
Visible to object of other classes: Both NO
Visible to objects of other classes outside the namespace collection: Both NO
Visible to object of child classes outside the namespace collection: Both NO
If private doing the same as protected internal then why we need the both just one should be enough or not?