1

我有课,我想重现与ToString("0.0000")其他数字格式相关的功能。如何才能做到这一点?

4

2 回答 2

1
class MyNumber : IFormattable
{
   decimal value;
   public MyNumber(decimal value)
   { this.value = value; }

   string IFormattable.ToString(string format, IFormatProvider formatProvider)
   { return value.ToString(format, formatProvider); }

   public string ToString(string format)
   { return ((IFormattable)this).ToString(format, System.Globalization.CultureInfo.CurrentCulture); }
}

class Program
{
   static void Main(string[] args)
   {
      MyNumber num = new MyNumber(3.1415926m);
      Console.WriteLine(num.ToString("0.0000"));
      Console.WriteLine("{0:0.0000}", num);
   }
}
于 2010-01-22T14:57:11.170 回答
0

正则表达式可能是你最好的选择。

于 2010-01-22T07:30:07.233 回答