"??"运算符首先判断左边的操作数是否为null,如果null则返回"??"后面给出的默认值,否则返回左边操作数。
例:var info=data.key + "=" +(data.value??string.Empty);