All Questions
Tagged with semantics method-overloading
1 question
13
votes
3
answers
653
views
Does one method overload an other, or are both methods "overloaded"
If I create this method
public void foo()
And then I create an overloaded version like this
public void foo( string bar )
Do we say that the second functions overloads the first, or are both methods ...