(做个笔记,转载至http://www.sharejs.com/codes/csharp/6045)
double temp=3.1415926;
Fixed point:string str1=temp.toString(“f1”);//保留一位小数 四舍五入 结果:3.1
Fixed point:string str2=temp.toString(“f2”);//保留两位小数,四舍五入 下面一次类推 结果:3.14
Number:string str2=temp.toString(“N”);//保留 结果:3.14
General (default):string str2=temp.toString(“G”);//保留 结果:3.1415926
Percent:string str2=temp.toString(“P”);//保留 结果:314.16%
Scientific:string str2=temp.toString(“E”);//保留 结果E:3.141593E+000
Currency:string str2=temp.toString(“C”);//保留 结果:¥3.14