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