>我面临着我的 texbox 值到小数的问题。在比利时,十进制字符是","。它在 UI 上运行良好,但是一旦将这些值传递给我的方法,它就不再读取","了。
我尝试玩文化信息,但没有运气。
在这里,它仍然为我提供了正确的值,逗号作为分隔符。因此,例如,这里仍然是"85,00"的正确值
if (rdoNew.Checked)
{
productPresenter.addProduct(
txtProductCode.Text, txtProductName.Text, txtProductDescription.Text,
Convert.ToDecimal(txtPriceExVat.Text, CultureInfo.InvariantCulture), Convert.ToDecimal(txtPriceIncVat.Text, CultureInfo.InvariantCulture),
txtProductSerial.Text, Convert.ToBoolean(checkboxIsService.Checked)
);
}
else
{
productPresenter.updateProduct(Convert.ToInt32(cbProducts.SelectedValue), txtProductCode.Text, txtProductName.Text, txtProductDescription.Text,
Convert.ToDecimal(txtPriceExVat.Text, CultureInfo.InvariantCulture), Convert.ToDecimal(txtPriceIncVat.Text, CultureInfo.InvariantCulture),
txtProductSerial.Text, Convert.ToBoolean(checkboxIsService.Checked));
}
但是这里的价格价格ExVat和priceIncVat,例如现在是"8500"
public void addProduct(string productCode, string productName, string productDescription, decimal priceExVat, decimal priceIncVat, string serialNumber, bool isService)
{
tbl_products product = new tbl_products();
product.ProductCode = productCode;
product.ProductName = productName;
product.ProductDescription = productDescription;
product.ProductPriceExVat = priceExVat;
product.ProductPriceInclVat = priceIncVat;
product.ProductSerialNumber = serialNumber;
product.IsService = isService;
我是如何理解的,当我使用 CultureInfo.InvariantCulture 时,字符串被转换为正确的区域性信息。但我认为我在这里错了。
因为你从不在代码中使用当前区域性或特定区域性(可以fr-BE
或nl-BE
,因为你没有指定它)。
由于InvariantCulture
使用 ,
作为NumberGroupSeparator
,您的代码认为这个分隔符是千位分隔符而不是小数位。
这就是为什么你的结果会8500
而不是85,00
(我假设你把你的85000
写成错字)
如果您在代码中使用这种特定文化,我认为它应该没问题。
decimal.Parse("85,00", CultureInfo.GetCultureInfo("fr-BE"));
// 85,00
decimal.Parse("85,00", CultureInfo.GetCultureInfo("nl-BE"));
// 85,00