Overloading and overriding

Write difference between Overloading and Overriding.

OverloadingOverriding
It happens at compile time.It happens at runtime.
It adds or extend more to the method functionality.It changes the existing functionality of the method.
Methods have different parameter list or type or the return type.Methods have the same signature as the parent class method.
In overloading, static binding is happen.In overriding, dynamic binding is happen.
User locale in ASP.NET
ASP.NET - user locale in ASP.NET - System.Web.UI.Page.Culture....
How do you implement inheritance in .NET?
.NET - How do you implement inheritance in .NET? - In VB.Net we implements using Inherits keyword....
Differences between Server-side and Client-side code
ASP.NET - Differences between Server-side and Client-side code - Server-side code executes on the server...
Post your comment