What does Protected Internal means in .Net
Posted
by vaibhav
on Stack Overflow
See other posts from Stack Overflow
or by vaibhav
Published on 2010-04-16T06:48:04Z
Indexed on
2010/04/16
6:53 UTC
Read the original article
Hit count: 227
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.
© Stack Overflow or respective owner