Код: Выделить всё
string y = null;
string x = y + null; // empty string
< /code>
и < /p>
string x = null + null; // doesn't compile
Подробнее здесь: https://stackoverflow.com/questions/793 ... g-and-null
Код: Выделить всё
string y = null;
string x = y + null; // empty string
< /code>
и < /p>
string x = null + null; // doesn't compile