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
Why main method is static in c#?
Why do we need interface in c#?
What is array and types of array in c#?
What are immutable types in c#?
What is a property c#?
How do I open the console?
How do you convert byte array to hexadecimal string, and vice versa?
How do I create a multi language, multi file assembly?
What is an event in c#?
Is struct object oriented?
What are abstract classes in c#?
What is a nested type. Give an example?
What is dbml file in c#?
Explain deadlock?
Can mvc be used for desktop applications?