我在网上搜索了这么多时间,而我找不到一个简单的代码,该如何替换列表集合中的每个值都等于变量的项目。
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))
{
}
替换价格我需要写什么?