Reputation: 25201
I've had a look at Path.Combine
and noticed it has four overloads:
string
, string
string
, string
, string
string
, string
, string
, string
params string[]
How are the first three overloads useful?
The way I see it, the fourth overload makes the others pretty pointless. I looked at the source and I did see that the fourth overload's implementation is a bit different, but even in this case I would expect to have just the one params
overload which decides which implementation to use based on the array's length.
Upvotes: 5
Views: 1873
Reputation: 30902
I can only speak from my experience with other C# developers.
Not all developers are familiar or comfortable with the params
syntax (and the fact that the technical name is variadic function parameters doesn't help).
I know I've had to explain it over and over again, so it is not unusual to see calls
instance.ParamsMethod(new int[]{1});
//or even
instance.ParamsMethod(new List<int>{1}.ToArray());
for a method writen as:
public void ParamsMethod(params int[] source) {}
negating all the sweet syntactic sugar of params
(and then some).
So, my personal preference is to provide the 1 and 2 parameter case as overloads, because that somewhat makes it harder to clutter the code unnecessarily. The call is marginally slower because of the overload chaining, but it helps make clearer code.
Upvotes: 0
Reputation: 43046
According to this answer, https://stackoverflow.com/a/2796763/385844, it's to avoid the overhead of creating the parameter array, and because the non-params overloads are convenient for users of languages that do not support variable-length parameter lists.
See also
Why does string.Format come in several flavors?
Upvotes: 4
Reputation: 26386
Just like Oded said, I found out that it must have been there for backward compatibility as I couldn't found it in 2.0, 3.5
I think the overloaded started in 4.0
As for the other many overloads, I wouldn't speak for .net team, but I feel they feel is pointless increasing the overloads every time so they stopped at 4 and provided an Array of string for more than 4 string combinations - which I think is wise
I based my explanation on Lambda expression where the team stopped at 16 arguments
Action(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16)
Path.Combine could have been like that but is pointless.
Upvotes: 1