111,120
社区成员
发帖
与我相关
我的任务
分享
class MyCurrencyFormater : IFormatProvider
{
public static readonly MyCurrencyFormater Instance = new MyCurrencyFormater();
private MyCurrencyFormater() {}
...
}
string my = string.Format( MyCurrencyFormater.Instance, "{0}", 123.45 );