Can you override private virtual methods?

Answers were Sorted based on User's Feedback



Can you override private virtual methods?..

Answer / umesh

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

Is This Answer Correct ?    28 Yes 6 No

Can you override private virtual methods?..

Answer / payal mehta

WE can not use private access modifier for VIRTUAL,INTERFACE
and also we can not inherit private methods or properties
in inherited classes.

Is This Answer Correct ?    14 Yes 2 No

Can you override private virtual methods?..

Answer / suresh.gv

we should not use Private Access Specefier for
VIRTUAL ,ABSTRACT ,INTERFACES

Is This Answer Correct ?    14 Yes 4 No

Can you override private virtual methods?..

Answer / kiran

No

virtual or abstract members cannot be private

Is This Answer Correct ?    11 Yes 3 No

Can you override private virtual methods?..

Answer / pk

no

Is This Answer Correct ?    10 Yes 4 No

Can you override private virtual methods?..

Answer / asim bukhari

we cant use private access modifier for VIRTUAL, INTERFACE
and ABSTRACT

Is This Answer Correct ?    7 Yes 2 No

Can you override private virtual methods?..

Answer / faisal

No.

Is This Answer Correct ?    1 Yes 0 No

Can you override private virtual methods?..

Answer / vivek

virtual or abstract members cannot be private.

Ex: error occurs during the static compilation phase, which
means that no program that declares a private virtual method
will ever be executed in any way.
C#
class A
{
private virtual int Test()
{
return 1;
}
}

class Program
{
static void Main()
{
}
}

Compile-time error

Error 1
'A.Test()': virtual or abstract members cannot be private

Is This Answer Correct ?    0 Yes 0 No

Can you override private virtual methods?..

Answer / kirti

No. Private methods are not accessible outside the class.

Is This Answer Correct ?    0 Yes 0 No

Can you override private virtual methods?..

Answer / bk sahoo

yes

Is This Answer Correct ?    12 Yes 16 No

Post New Answer

More C Sharp Interview Questions

To create a localized application which namespaces are necessary?

0 Answers   Siebel,


What is Interface and Abstraction (in real time scenario)

4 Answers   HCL,


What is default constructor in c#?

0 Answers  


What?s a delegate?

3 Answers  


About a class access specifiers and method access specifiers ?

3 Answers   MMTS,






Is an array an object c#?

0 Answers  


Why do we use constructors in c#?

0 Answers  


What is the interface in c#?

0 Answers  


Is type nullable c#?

0 Answers  


What is single dimensional array in c#?

0 Answers  


Can property defined in Interface.

4 Answers   Synechron,


What is a void c#?

0 Answers  


Categories