What does Protected Internal means in .Net
- by vaibhav
Protected Means, we can access this member only in a deriving class, and internal means we can access this member in any type in the same assembly using a object.
So can I consider a Protected Internal member as a public member in the same assembly. and as a protected member in the different assembly.