Yet another visual approach of the current access modifier (C# 7.2). Hopefully the schema helps to remember it easier (click the image for interactive view.)
Outside Inside
If you struggle to remember the two-worded access modifiers, remember outside-inside.
private protected: privateoutside (the same assembly) protectedinside (same assembly)
protected internal: protectedoutside (the same assembly) internalinside (same assembly)