Given the following code, I would expect to an empty result or an exception:
String.Format(null, "Hello")
Instead, the result is the string "Hello". Why is this?
|
|
|
It's working because it's choosing this overload:
A Intuitively, we might have expected this overload:
And of course, if it did choose that, we would have gotten an |
|||
|
|
|
It chooses overload
because your second argument has type of
You can see the difference by calling:
In this case conversion to object is chosen and you have an exception (actually there is no implicit conversion between You can read more on choosing best function member on msdn. |
||||
|
|
|
It might be interpreting the request as a call to the String.Format(IFormatProvider provider, string format, params object[] args) override and taking null as the provider and the params but "Hello" as the format, thus returning "Hello". If you want an empty result use |
|||
|
|