1、三目运算符
cs
// 【判断语句】?【为true时获得的值】:【为false时获得的值】
string res = x > 2 ? "正确" : "错误";
// 取值时可以再叠加判断
string res2 = x > 2 ? "正确" : (x > 1 ? "有一点正确" : "错误");
2、可为空
cs
// 声明可为空的数据类型
int? a;
int? a = 5;
int? a = null;
3、null条件运算
cs
// 如果row["SZ1"]为空,赋值结果就直接返回null,而不是报错
var sz1 = row["SZ1"]?.string();
4、null合并运算
cs
// x不为空时,返回x,为空时返回-1
int? x = null;
return x ?? -1;