can it possible to acees the virthual method using the
override method object?
plz give me the example
Answer Posted / aspdev556
class BaseClass
{
public virtual Method(){}
}
class DerivedClass
{
public override Method()
{base.Method();}
}
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
what is the Difference between the public and private ?
What is the base class from which all value types are derived?
What is the purpose of escape sequence?
Can I use ReaderWriterLock instead of Monitor.Enter/Exit for Threading?
Explain how to implement delegates in c#.net
How do you sort an array in c#?
Why do we use reflection in c#?
Is there any sample c# code for simple threading?
What is the use of inheritance in c#?
Are c# tuples immutable?
What is concrete class in c# with example?
What is difference between an Structure and Class?
What is delegation in oops?
What is a class level variable in c#?
Why delegate is used in c#?