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

Which one is trusted and which one is untrusted?

0 Answers  


Describe how a .net application is compiled and executed

0 Answers  


What are the types of comment in c# with examples?

0 Answers  


Explain 'structure padding'?

0 Answers   DELL,


What is written in c#?

0 Answers  






What is marshalling and what are different kinds of marshalling?

0 Answers  


How can an inner class access the members of outer class?

0 Answers   Changepond,


What is a linq in c#?

0 Answers  


How do you inherit from a class in C#?

1 Answers  


Explain what is copy constructor?

0 Answers   BPL,


What is serialization in c#?

0 Answers  


How can you reference current thread of the method ?

0 Answers  


Categories