Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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

What is string pool in c#?

0 Answers  


can we access main() using objects?

1 Answers   ssinformatics,


Will finally block get executed if the exception had not occurred?

2 Answers  


You are creating a custom usercontrol, some of the newly created properties are shown in the properties window. How you can hide a new property named theme from the properties window?

0 Answers  


What happens if a static constructor throws an exception?

0 Answers  


Explain deadlock?

0 Answers  


Please write a program to display “welcome to bestinterviewquestion.com” in c#?

0 Answers  


What do you mean by a windows process in regards to memory allocation?

0 Answers  


What is string in c# net?

0 Answers  


If a.equals(b) is true then a.gethashcode & b.gethashcode must always return same hash code.

0 Answers  


Suppose in a scenario if we want to display information only until 4.00 p.m and after that means after 4.00 p.m if any one tries to access the information it should give error mesage. Then how will you write a delegate for this ? Give coding.

1 Answers   HP, nTech Solutions, Primetech Software, PS,


What does the keyword virtual mean in the method definition?

1 Answers  


Categories