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
How would ASP and ASP.NET applications run at the same time on the same server?
Can a .net web application consume java web service?
What is difference between abstract class and an interface?
How asynchronous call can be implemented using delegates?
What are the best practices to follow to secure connection strings in an ASP.NET web application?
What is session and cookies in asp.net?
Describe the method to create a permanent cookie?
How can we add an event handler for a ASP.NET function executed on MouseOver for a certain button.
What is preprocessor in .net?
What is the importance of aspnet_isapi.dll, inetinfo.exe andaspnet_wp.exe in the page loading process.
Explain the use of view state?
Which class is used to send an email message from an ASP.NET Web page?
What is session mode in asp.net?
What are type/key pairs in client script registration?
What is the recommended approach for asp.net mvc to globally intercept exceptions? What other functionality can be implemented with the approach? : Asp.Net MVC