gpt4 book ai didi

c# - 通过指定多个条件在通用列表中查找项目

转载 作者:行者123 更新时间:2023-12-03 13:38:51 24 4
gpt4 key购买 nike

最常见的是,我们找到具有以下代码的通用列表:

CartItem Item = Items.Find(c => c.ProductID == ProductID);
Item.Quantity = Quantity;
Item.Price = Price;

因此,上面的代码查找并更新了其他数据,但是如果要在多个条件下查找,该如何编写代码?

我想编写如下代码:
CartItem Item = Items.Find(c => c.ProductID == ProductID and c.ProductName == "ABS001");

当找到通用列表时,请为我提供多种条件的指导。

最佳答案

试试这个:

CartItem Item = Items.Find(c => (c.ProductID == ProductID) && (c.ProductName == "ABS001"));

关于c# - 通过指定多个条件在通用列表中查找项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12406750/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com