如何返回字符串“ test”,我正在使用?算子

时间:2019-03-21 15:38:59

标签: c# operators

如何返回字符串“ test”?我正在使用??运算符,方法GetStringValue返回空字符串。

X的当前值是“”,但应该是“测试”?

var X = GetStringValue() ?? "test";

private static string GetStringValue()
{
   return string.Empty;
}

0 个答案:

没有答案