在String.Format [复制]中转义大括号'{'

本文翻译自:Escape curly brace '{' in String.Format [duplicate]

This question already has an answer here: 这个问题在这里已有答案:

How do I display a literal curly brace character when using the String.Format method? 使用String.Format方法时如何显示文字大括号字符?

Example: 例:

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

I would like the output to look like this: 我希望输出看起来像这样:

public Int32 MyProperty { get; private set; }

#1楼

参考:https://stackoom.com/question/Fpkf/在String-Format-复制-中转义大括号


#2楼

Use double braces {{ or }} so your code becomes: 使用双括号{{}}以便您的代码变为:

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; }
发布了0 篇原创文章 · 获赞 7 · 访问量 3万+

猜你喜欢

转载自blog.csdn.net/asdfgh0077/article/details/105346002