浮点值格式化为字符串的函数
DEPHI   里的 
 FloatToStrF(long   double   value,   TStringFloatFormat   format,   int   precision,   int   digits)   函数在   C#里对应的方法或函数吗?
------解决方案--------------------double j=123.45; 
     string s1=string.Format( "the value is {0,7:f3} ",j); 
     this.textBox2.Text=s1; 
          //结果 the value is 123.450