Tagged Questions
8
votes
3answers
323 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 ...