Convert.ToDecimal 为简单字符串引发异常

Posted

技术标签:

【中文标题】Convert.ToDecimal 为简单字符串引发异常【英文标题】:Convert.ToDecimal throws exception for simple string 【发布时间】:2015-02-13 00:34:33 【问题描述】:

我正在尝试将字符串“10.00”转换为十进制,如下所示:

decimal a = Convert.ToDecimal("10.00");

但由于一些令人难以置信的原因,我收到了这个错误:

输入字符串的格式不正确。在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) 在 System.Convert.ToDecimal(String value) 在 Presentation .Models.OrderBaseModel.Response(FormCollection response, String responseUrl)

还有更深层的原因吗? “10.00”字符串怎么会无法解析??

【问题讨论】:

这可能是文化问题 - 您是否尝试解析“10,00”? 【参考方案1】:

Convert.ToDecimal() 调用 Decimal.Parse()

为确保 10.00 能够解析,您需要使用能够解析它的区域性。

var culture = CultureInfo.InvariantCulture
decimal a = Decimal.Parse("10.00",culture);

【讨论】:

它仍然可以抛出,因为CreateSpecificCulture 使用控制面板中的用户覆盖,并且用户可以覆盖小数分隔符。最好改用CultureInfo.InvariantCulture

以上是关于Convert.ToDecimal 为简单字符串引发异常的主要内容,如果未能解决你的问题,请参考以下文章

Convert.ToDecimal 引发的意外异常

VB.Net Convert ToDecimal 不适用于逗号

Decimal.Parse() 与 Convert.ToDecimal() [重复]

使用 Convert.ToDecimal() 会导致 C# 中的值四舍五入。如何克服这个问题?

decimal.TryParse和Convert.ToDecimal+try{} catch{}的性能比较

为啥要Convert.toDouble,直接赋值不可以?