What is Method overloading?
siva
Select an image from your device to upload
Methos Overloading is when you have the same name of the method but different signature. The signature becomes different when the number of the parameters are different or methods have different types or different number of parameters.For example: public void method1(string param1,...)public void method1(int param2,string param1, ...)
Method overloading is when u add keyword like public or private to codes.