这段代码如何翻译成 C#,具体来说如何sprintf
在 C# 中实现?
string output = "The user %s logged in";
string loggedIn = "is";
string loggedOut = "isn't";
if (TheUser.CheckStatus())
{
output = sprintf(output, loggedIn);
}
else
{
output = sprintf(output, loggedOut);
}
return output;
我期待看看"The user isn't logged in"
是TheUser.CheckStatus()
不是false
。