string to double skips last decimal if it is zero?

廉价感情. 提交于 2019-12-17 21:17:10

问题


Here is my Problem.

I need to Convert say "5.550" (string) to double as 5.550 that is double with 3 decimal digits. i have tried IFormatProvider while parsing but no use.it keeps skipping last zero(). Please advice.

Thanks, Kumar M A


回答1:


double doesn't keep insignificant digits - there's no difference between 1.5 and 1.50000 as far as double is concerned.

If you want to preserve insignificant digits, use decimal instead. It may well be more appropriate for you anyway, depending on your exact context. (We have very little context to go on here...)



来源:https://stackoverflow.com/questions/19574656/string-to-double-skips-last-decimal-if-it-is-zero

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!