本文介绍了对于StringBuilder.AppendFormat高级格式规则的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我已经看到了这个说明StringBuilder的代码示例 AppendFormat
用法:
;
使用System.Text;
类节目
{
静态INT [] _V =新INT []
{
1,
4,
6
};
静态无效的主要()
{
StringBuilder的B =新的StringBuilder();
的foreach(在_V INT V)
{
b.AppendFormat(INT:{0:0.0} {1},V
Environment.NewLine);
}
Console.WriteLine(b.ToString());
}
}
Where can I find documentation on those advanced rules for string formatting?
解决方案
- Composite Formatting
- Standard Numeric Format Strings
- Custom Numeric Format Strings
- Standard Date and Time Format Strings
- Custom Date and Time Format Strings
这篇关于对于StringBuilder.AppendFormat高级格式规则的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!