这个问题在这里已经有了答案:
How to escape braces (curly brackets) in a format string in .NET
(10 个回答)
2年前关闭。
使用 String.Format 方法时如何显示文字大括号字符?
例子:
sb.AppendLine(String.Format("public {0} {1} { get; private set; }",
prop.Type, prop.Name));
我希望输出如下所示:
public Int32 MyProperty { get; private set; }
最佳答案
使用双大括号 {{
或 }}
使您的代码变为:
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; }
关于c# - 在 String.Format 中转义花括号 '{',我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3773857/