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; }
ask by PhilB translate from so