我知道这是一个非常愚蠢和基本的问题,但我真的不知道其他方法可以做到这一点。
现在我知道我可以在文本中插入空格,如下面的示例所示。
int num = some numerical value;
status.Text = "Successfully Deleted"+ " " + num + " " + "Files";
然而,我想知道是否有更简洁的方法来做到这一点。我总是这样做,但我想知道是否有更容易/更简洁的方式。谢谢。
答案 0 :(得分:10)
使用String类:
int num = 5;
status.Text = String.Format("Successfully Deleted {0} Files", num);
使用StringBuilder类:
int num = 5;
StringBuilder sb = new StringBuilder();
sb.AppendFormat("Successfully Deleted {0} Files", num);
status.Text = sb.ToString();
答案 1 :(得分:0)
更多选项:
status.Text = "Successfully Deleted " + num + " Files";
或者:
public static string SurroundWithSpaces(this object o)
{
return " " + o + " ";
}
status.Text = "Successfully Deleted" + num.SurroundWithSpaces() + "Files";