替换列表集合中的项目

时间:2019-02-09 18:28:56

标签: c# listcollectionview

我在网上搜索了这么多时间,而我找不到一个简单的代码,该如何替换列表集合中的每个值都等于变量的项目。

public class InventoryPrices
    {
        public int InventoryItemID { get; set; }
        public int CatalogID { get; set; }
        public decimal RetailPrice { get; set; }
    }

List<InventoryPrices> mItems = new List<InventoryPrices>();

如果目录id为1,则单击按钮我要替换零售价格

if(mItems.Any(x=>x.CatalogID==1))
 {


 }

替换价格我需要写什么?

0 个答案:

没有答案