Can you override private virtual methods?
Answers were Sorted based on User's Feedback
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 |
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 |
What is the difference between delegates and superdelegates?
Explain the difference between passing parameters by value and passing parameters by reference with an example?
how many catch we can write in thye program?
What is a console device?
What is the advantage of constructor?
What will be the output of the following code?
What is namespace in oop?
Using system; class main { public static void Main() { int a = 1; for (int i = 0; i < 10; i++) { int j = a * 5; Console.WriteLine(a + "*5=" + j); a++; } Console.ReadLine(); } }
What is a deadlock lock?
How long does it take to get a loop recorder put in?
How do you prevent a class from being inherited in c#?
how dot net compiled code will become platform independent?
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)