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
How to Show Message box in Metro Style App?
Which control cannot be placed in mdi?
Why is it important to override gethashcode when equals method is overridden?
What is the c# equivalent of c++ catch (…), which was a catch-all statement for any possible exception? Does c# support try-catch-finally blocks?
What is the diff between the System.Array.CopyTo() and System.Array.Clone()?
Can you create partial delegates and enumerations?
What is private constructor c#?
What are types in c#?
Which of these string definitions will prevent escaping on backslashes in c#?
Which program construct must return a value?
What is a partial class in c#?
what is the difference between .dll and .exe
What Is An Interface Class?
Is it possible to nest cfml conditional tags?
What do you mean by stack and heap in c#?