标签: c# operators
如何返回字符串“ test”?我正在使用??运算符,方法GetStringValue返回空字符串。
??
GetStringValue
X的当前值是“”,但应该是“测试”?
X
var X = GetStringValue() ?? "test"; private static string GetStringValue() { return string.Empty; }