Internal and Protected Internal in C sharp Arabic #49
Suggested Videos
❑ Internal an Protected Internal.
Internal and Protected Internal
A member with internal access modifier is available any where with in the containing assembly . it’s compile time error to access , an internal member from outside the containing assembly .
Protected Internal members can be accessed by any code in the assembly in which it is declared, or from within a derived class in another assembly .it is a combination of protected and internal. If you have understood protected and internal , this should be very easy to follow.
Tags:
C sharp