比如
int
y = x ?? -1 如果x为空,那么y的值为-1.
只能是null的时候会选取第二个值。
如果需要在null和empty的时候赋值,可以用下面的方式:
string result = string.IsNullOrEmpty(m) == true ? "nihao" : m;
时间: 2024-10-10 15:28:04
比如
int
y = x ?? -1 如果x为空,那么y的值为-1.
只能是null的时候会选取第二个值。
如果需要在null和empty的时候赋值,可以用下面的方式:
string result = string.IsNullOrEmpty(m) == true ? "nihao" : m;