2007年8月9日 星期四

自訂浮點數

在double.ToString(string format,System.IFormatProvider provider)可提供轉換
如:

double dvalue=12.12345;
string strtest=dvalue.ToString(("f2",null); // strtest -> 12.12 (小數第二位)
double aa1=double.Parse(dvalue.ToString("f2",null)); // 將string 轉會為 double

沒有留言:

張貼留言