转换成百分数

string   s;
double   d=0.3;
System.Globalization.NumberFormatInfo   n=new   System.Globalization.NumberFormatInfo();
n.PercentDecimalDigits=0;
n.PercentPositivePattern=1;
s=d.ToString( "p ",n);


n.PercentDecimalDigits=0;
n.PercentPositivePattern=1;
这两句可以不要只是转换的效果不同而已

你可能感兴趣的:(转换)