Home »

How is method overriding different from method overloading?

Question ListCategory: C#.NETHow is method overriding different from method overloading?
ethanbrown author asked 8 years ago
1 Answers
milleranthony7 author answered 8 years ago

When overriding a method, you change the behavior of the method for the derived class. Overloading a method simply involves having another method with the same name within the class.

Please login or Register to Submit Answer