Can you override private virtual methods?

Answers were Sorted based on User's Feedback



Can you override private virtual methods?..

Answer / tsahi

You cannot write virtual private methods, let alone override
them. as noted above, a private virtual method will not compile.

Is This Answer Correct ?    8 Yes 0 No

Can you override private virtual methods?..

Answer / dharmendra nonia

No,We can't override the private virtual method because
it private access specifier does not allow to inherit the
private member of a class in a derived class.
Ex:--
-------

using System;
public class ABC
{
private virtual void mm()
{
}

}
public class abc:ABC
{
private override void mm()
{
Console.WriteLine("Hello");
}

}
class d:abc
{
public static void Main()
{
d D=new d();
D.mm();
}
}

Output:-
--------
ae.cs(4,23): error CS0621: 'ABC.mm()' : virtual or abstract
members cannot be
private
ae.cs(11,24): error CS0621: 'abc.mm()' : virtual or
abstract members cannot be
private

Is This Answer Correct ?    6 Yes 0 No

Can you override private virtual methods?..

Answer / swapna

No, we cannot access private methods in inherited classes.
They have to be protected in the base class to allow any
sort of access.

Is This Answer Correct ?    6 Yes 1 No

Can you override private virtual methods?..

Answer / sanjay

We cant override private virtual methods...

Is This Answer Correct ?    6 Yes 2 No

Post New Answer

More C Sharp Interview Questions

Is arraylist generic in c#?

0 Answers  


Can we maintain state in webservice?

0 Answers  


What is difference between C# and VB.NET?

0 Answers   CDC,


What is the use of protected in c#?

0 Answers  


Can we create multiple constructors?

0 Answers  






If we inherit a class do the private variables also get inherited ?

6 Answers   TCS,


How do you pronounce c#?

0 Answers  


How is lazy loading achieved?

0 Answers  


What is yield return in c#?

0 Answers  


How would you describe encapsulation in c#?

0 Answers  


can it possible to acees the virthual method using the override method object? plz give me the example

2 Answers  


What is the file extension for c#?

0 Answers  


Categories