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 |
What is a copy constructor in c#?
When do you absolutely have to declare a class as abstract (as opposed to free-willed educated choice or decision based on UML diagram)?
What is a reference type c#?
What is out in c#?
Why do we use lambda expression in c#?
What is the extension of c# file?
What is the .NET collection class that allows an element to be accessed using a unique key?
Explain About delegates
How Reflection is used and what it's significance ?
What is strong data type in c#?
What is the signature of a method?
How to find out that the code is written as managed or un-managed code?