数字转换为字符串的小问题double a=1.00 如何把a转换为字符串“1.00”[解决办法]a.ToString( "0.00 ")[解决办法]行不行不就是调试一下的问题,这也要问? double a = 1.00; Text = string.Format( "{0:0.00} ", a);