The main objective of this article is to learn about method overloading and method overriding in polymorphism in C# programming.
PolymorphismPolymorphism simply means "many forms" and hence means "having many forms" in C# or for that matter in any Object Oriented Programming language.Method overloading and method overriding in C# implies one name with multiple functions. In method overloading and method overriding in C# we declare methods with the same name and different parameters in the same class or methods with the same name and same parameters in different classes.There are two types of method overloading and method overriding in C#. They are the following.Static PolymorphismMethod overloading and operator overloading are examples. It is also called early binding.Dynamic PolymorphismMethod overriding and Virtual functions are examples. it is also called late binding.Example of Method Overloading
Programming Strings using C#