变量定义中含有两个问号,意思是取所赋值??左边的,如果左边为null,取所赋值??右边的。
int? myNullableInt = 1
string str1 = null;
string str2 = str1 ?? "";