Tell me Asp.net Method Overriding.

Answer Posted / kkk

same method and same args in base and derived classes simple.

class a
{
public virtual void m1(int a,int b)
{}
}
class b:a
{
public override void m1(int a,int b){}
}

Is This Answer Correct ?    3 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is there any limit for query string? Means what is the maximum size?

683


How does windows service lifecycle differ from a .standard. Exe?

703


Can we have multiple worker process in an ASP.NET application? If so then how it has been handled by application? And who handles it?

721


If we remove web.config or machine.config from the application then, is this application will works?

772


What is variable and constant in .net programming language?

573






What is the extension of master page in asp.net?

730


Explain the procedure to handle the process request using mhpm events fired? : asp.net mvc

733


What is the namespace to create thread in .net?

695


What is the difference between typeof() vs gettype()?

749


What is server infrastructure & server components?

942


what are the security certificates used in webservices?

1708


What is special types forms

723


Explain the difference between asp.net mvc and asp.net webforms? : asp.net mvc

734


To redirect the user to another page which method do we use without performing a round trip to the client?

708


Which method is used to enforce garbage collection in .net?

598