0 votes
in C Sharp by
What is method overloading in C#?

1 Answer

0 votes
by

Method overloading is mechanism to create multiple methods with the same name and unique signature in the same class. When you go for compilation, the compiler uses overload resolution to determine the specific method to be invoked.

...