如果需要把数字、整数最终都保留两位小数,你可以试试

int d=56658; 

return String.Format("{0:N2}", d.ToString("#.00"));

相关文章: