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 / komilla shaheen
Protected means within the same class .Internal means
within the same assembly.Protected internal means class
member within the same class,inherited classes in the same
assembly.i think it protected internal which is availble
in derived class which is outside the assembly.
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
What are data types examples?
Define multicast delegate in c#?
What is the difference between system.text.stringbuilder and system.string?
What is executenonquery c#?
Define multicast delegate? How it be used?
How do you create dlls in .NET
What is lambda expression in c#?
What does string intern do?
What are custom exceptions? Why do we need them?
Can enum be null c#?
Can we have two main methods in c#?
Why do we use methods in c#?
What is Implementation inheritance
How to transpose multi-dimensional array?
So let's say I have an application that uses myapp.dll assembly, version 1.0.0.0. There is a security bug in that assembly, and I publish the patch, issuing it under name myapp.dll 1.1.0.0. How do I tell the client applications that are already installed to start using this new myapp.dll?