What is the difference between protected and protected internal?
Answer Posted / manu
protected is really protected inside and outside the assembly (protected internal / protected external) (not allowed on top level classes)
protected internal is really public inside the assembly but protected outside the assembly (public internal / protected external) (not allowed on top level classes)
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How do you implement thread synchronization (object.wait, notify,and criticalsection) in c#?
What floating point types is supported in C#?
Explain the difference between a Private Assembly and a Shared Assembly
What is the use of thread join in c#?
In which order the destructor is called for an inherited class?
What is the difference between method and constructor in c#?
Can constructor be protected in c#?
What are custom exceptions?
What is difference between float and integer?
Explain About Virtual functions and their use.
Why array is faster than arraylist in c#?
What is list collection in c#?
List the fundamental oop concepts?
What is the difference between finalize() and dispose() methods?
What is difference between override and new in c#?