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
Explain how many types of exception handlers are there in .net?
What are the collections in c#?
How many types of inheritance are there in c#?
What is dao in c#?
What does .length do in c#?
What is the difference between public, static, and void?
What Is The Difference Between The System.array.copyto() And System.array.clone()?
How can we make a thread sleep for infinite period ?
What is eager loading in c#?
Can I define my own exceptions?
Is c# strongly typed?
Why we use get set property in c#?
What are the classes contained in a single .NET DLL ?
What is byte c#?
How do you use nullable?