Convert.ToString(null)
returns
null
As I expected.
But
Convert.ToString(null as object)
returns
""
Why are these different?
|
|
|
There are 2 overloads of
The C# compiler essentially tries to pick the most specific overload which will work with the input. A In the The really hairy details of how this tie breaking works is covered in section 7.4.3 of the C# language spec. |
|||||||||||||||
|
|
Following on from JaredPar's excellent overload resolution answer - the question remains "why does And the answer to that is...because the docs say so:
EDIT: As to whether this is a "bug in the spec", "very bad API design", "why was it specified like this", etc. - I'll take a shot at some rationale for why I don't see it as big deal.
|
|||||||||||||||||||
|