When you inherit a protected class-level variable, who is
it available to?
Answers were Sorted based on User's Feedback
Answer / raja chandrasekaran
Protected class level variables can be accessed with in the
same class and accessed by the derived classes.Derived
classes can be in different assembly also. Even the
variables are private, it will be derived into the child
class. But the thing is, it is not accessible due to its
protection level.
Is This Answer Correct ? | 6 Yes | 5 No |
Answer / p.sahoo
Protected Class Variables Are Always Inherited in it's
derived classes.
But in the namespace it confused to me because in a
namespace we can set any type of modifiers.
Is This Answer Correct ? | 0 Yes | 6 No |
4. Describe the process when we send a request URL? And who is responsible for that?
What is concrete class in c# with example?
What is the use of system.environment class in c#.net?
What is c# most used for?
Explain the difference between “system.array.clone()” and “system.array.copyto()” in c#?
Explain how to use an extender provider in the project.
What is anonymous types in c#?
Why we use get and set method in c#?
What's the implicit name of the parameter that gets passed into the set method/property of a class?
Define a strong name in .net?
What is a generic method?
What is base class in c#?