what is diffrence between protected ,internal and protected
internal??
whether protected field available in derived class which is
outside the assembly.
if not ..this is possible by which access modifiers??
Answer Posted / priya
Protected means within the same class and types derived from containing class.
.Internal means within the same assembly.
Yes, protected field will be available in derived class which is
outside the assembly.
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the delegate in c#?
What is list collection in c#?
What is boolean method?
What is serialization and deserialization in c# with example?
Which attribute is used in order that the method can be used as webservice?
How many types of methods are there in c#?
Explain About delegates
If I return out of a try/finally in c#, does the code in the finally-clause run?
What is the difference between system.string and system.text.stringbuilder classes?
Can we overload the main method in c#?
Why do we use classes?
Explain About stateless and state full web service
Why do we need indexer in c#?
Can you pass value types by reference to a method?
What are the 4 pillars of any object oriented programming language?