What does "Overloaded"/"Overload" mean in regards to programming?
It means that you are providing a function (method or operator) with the same name, but with a different signature. For example:
void doSomething(); int doSomething(string x); int doSomething(int a, int b, int c);
2.1m questions
2.1m answers
60 comments
57.0k users