1

我想将我用 math.round(variable, 2) 舍入的小数格式化为货币格式,所以它总是将 4 转换为 4.00。我试着这样做:

    public ProductItem(String itemNo, String description, String unitOfMeasure, decimal unitPriceExclVAT, decimal purchasePrice, decimal margin, int actualStock, String imagePath)
    {
        this.ItemNo = itemNo;
        this.Description = description;
        this.UnitOfMeasure = unitOfMeasure;
        this.UnitPriceExclVAT = Math.Round(unitPriceExclVAT, 2);
        this.PurchasePrice = Math.Round(purchasePrice, 2);
        this.Margin = Math.Round(margin, 2);
        this.ActualStock = actualStock;
        this.ImagePath = imagePath;
    }

    public string ItemNo { get; private set; }
    public string Description { get; private set; }
    public string UnitOfMeasure { get; private set; }
    public decimal UnitPriceExclVAT { get; set; }
    public decimal PurchasePrice { get; set; }
    public decimal Margin { get; set; }
    public int ActualStock { get; private set; }
    public string ImagePath { get; private set; }



                foreach (JsonValue itemValue in groupObject["Items"].GetArray())
                {
                    if (uniqueGroupItemsCount != 36)
                    {
                        JsonObject itemObject = itemValue.GetObject();
                        ProductItem product = new ProductItem(itemObject["ItemNo"].GetString(),
                                                        itemObject["Description"].GetString(),
                                                        itemObject["UnitOfMeasure"].GetString(),
                                                        Convert.ToDecimal(itemObject["UnitPriceExclVAT"].GetString().Replace(',', '.')),
                                                        Convert.ToDecimal(itemObject["PurchasePrice"].GetString().Replace(',', '.')),
                                                        Convert.ToDecimal(itemObject["Margin"].GetString().Replace(',', '.')),
                                                        Convert.ToInt32(itemObject["ActualStock"].GetString().Replace(',', '.')),
                                                        itemObject["ImagePath"].GetString());


                        if (product.Description.ToString().ToLower().Trim().Contains(productItems) || product.ItemNo.ToString().ToLower().Trim().Contains(productItems))
                        {
                            var money = Convert.ToDecimal(string.Format("{0:C}", product.Margin));//here is where it goes wrong, i know i can format it like this, but its not working.
                            product.Margin = money;
                            searchedGroup.Items.Add(product);
                            uniqueGroupItemsCount++;
                        }

上面的代码会给我一个错误。错误是:mscorlib.dll 中出现“System.FormatException”类型的异常,但未在用户代码中处理

我希望你能帮帮我 :)

编辑:它不需要像 20.00 欧元这样的货币价值,只要 20.00 对我来说就足够了,因为我可以在 XAML 中使用欧元符号。

4

2 回答 2

1

当你想显示项目时,只需使用 product.Margin.ToString("C") ,你不能将它作为货币存储在十进制字段中

于 2014-04-01T13:40:29.503 回答
0

如前所述,字符串格式化功能仅在您尝试显示值时才有用。对于您发布的代码,string.Format("{0:C}", product.Margin)导致使用货币符号格式化的字符串,这导致Convert.ToDecimal()调用引发异常。

如果我正确理解您的更新,您唯一关心格式的时间是结果将显示给用户的时间。在这种情况下,您应该考虑使用值转换器将十进制值转换为格式化字符串以进行显示。

于 2014-04-01T15:10:05.743 回答