c#.NET和sprintf语法

前端之家收集整理的这篇文章主要介绍了c#.NET和sprintf语法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这个代码如何转换成C#,具体如何在C#中实现sprintf?
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;

如果TheUser.CheckStatus()为false,我希望看到“用户没有登录”.

解决方法

查看 string.Format,这里是一个使用它的代码的版本:
string output = "The user {0} logged in";
string loggedIn = "is";
string loggedOut = "isn't";

if (TheUser.CheckStatus())
{
    output = string.Format(output,loggedIn);
}
else
{
    output = string.Format(output,loggedOut);
}

return output;

或者更简单:(使用三元表达式)

string output = "The user {0} logged in";

return TheUser.CheckStatus() 
    ? string.Format(output,"is")
    : string.Format(output,"isn't");
原文链接:https://www.f2er.com/csharp/94322.html

猜你在找的C#相关文章