This is valid C# code
var bob = "abc" + null + null + null + "123"; // abc123
This is not valid C# code
var wtf = null.ToString(); // compiler error
Why is the first statement valid?
|
The reason for first one working: From MSDN:
More information on the + binary operator:
The reason of the error in second is: null (C# Reference) - The null keyword is a literal that represents a null reference, one that does not refer to any object. null is the default value of reference-type variables. |
|||||||||||||||
|
|
Because the
(MSDN mentions it, too: http://msdn.microsoft.com/en-us/library/k9c94ey1.aspx) On the other hand, |
|||||||||||||||
|
|
The first sample will be translated into:
The The second sample will be translated into:
So a |
|||||||||||||||
|
|
The first part of your code is just treated like that in which is what the C# compiler calls when you add strings. " and internally, that method replaces
And in 2nd part of your code throws exception because 'null' is not an object, the null keyword is a literal that represents a null reference, one that does not refer to any object. null is the default value of reference-type variables. And ' |
|||||||||||||||
|
|
In the COM framework which preceded .net, it was necessary for any routine which received a string to free it when it was done with it. Because it was very common for empty strings to be passed into and out of routines, and because attempting to "free" a null pointer was defined as a legitimate do-nothing operation, Microsoft decided to have a null string pointer represent an empty string. To allow for some compatibility with COM, many routines in .net will interpret a null object as a legal representation as an empty string. With a couple of slight changes .net and its languages (most notably allowing instance members to indicate "do not invoke as virtual"), Microsoft could have made As it is, there are some contexts in which a |
|||
|
|
|
The implementer has decided on something like this...
So.. your example becomes
which is the same as
At no point does null become a string. So |
|||||
|
|
I guess because it's a literal which doesn't refer to any object. |
||||
|
|
|
Someone said in this discussion thread that you can't make a string out of nothing. (which is a nice phrase as I think). But yes - you can :-), as the following example shows:
works fine and does not throw an exception at all. The only difference is that you need to cast one of the nulls into a string - if you remove the (string) cast, then the example still compiles, but throws a run-time exception: "Operator '+' is ambiguous on operands of type '<null>' and '<null>'". N.B. In the code example above, the value of x is not null as you might expect, it is actually an empty string after you have casted one of the operands into a string. Another interesting fact is that in C# / .NET the way
Regard the 1st line of the code snippet: If N.B. Also interesting: If you're using |
||||
|
|
|
Adding |
|||
|
|
|
Because there is no difference between |
||||
|
|
null.ToString()is given the namewtf. Why does that surprise you? You can't call an instance method when you have nothing to call it from in the first place. – BoltClock♦ May 30 '12 at 10:19