小编典典

String.Format 中的转义大括号“{”

all

使用 String.Format 方法时如何显示文字大括号字符?

例子:

sb.AppendLine(String.Format("public {0} {1} { get; private set; }", 
prop.Type, prop.Name));

我希望输出看起来像这样:

public Int32 MyProperty { get; private set; }

阅读 133

收藏
2022-02-28

共1个答案

小编典典

使用双括号{{左右}}你的代码变成:

sb.AppendLine(String.Format("public {0} {1} {{ get; private set; }}", 
prop.Type, prop.Name));

// For prop.Type of "Foo" and prop.Name of "Bar", the result would be:
// public Foo Bar { get; private set; }
2022-02-28