在String.Format中转义大括号'{'

时间:2010-09-22 21:44:19

标签: c# .net string

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

示例:

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

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

public Int32 MyProperty { get; private set; }

1 个答案:

答案 0 :(得分:1299)

使用双括号{{}},以便您的代码变为:

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; }