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
Define acid rule of thumb for transactions in c#.
Illustrate the process of code compilation in c#?
What are the types of attributes in c#?
How does one compare strings in c#?
Where’s global assembly cache located on the system?
What is the default scope of a class in c#?
What are Indexers in C#?
What are logical operators in c#?
What Is The Smallest Unit Of Execution In .net?
What are the fundamental differences between value types and reference types?
What is string interpolation in c#?
What is an icollection in c#?
Differentiate between response.expires and response.expiresabsolute?
Are c# tuples immutable?
Can property be private in c#?