gpt4 book ai didi

c# - 查找多个元素并根据结果设置属性

转载 作者:太空宇宙 更新时间:2023-11-03 10:53:23 25 4
gpt4 key购买 nike

我有一个 List<MyObject> _users ,我想找到用户名以“toto”开头的所有用户,并为所有这些用户设置一个属性,bool excepted = true

我实际上有这段代码:

_users.FindAll(z => z.userName.StartWith("toto") == true && location == "London")

我想达成这样的目标:

_users.FindAll(z => z.userName.StartWith("toto") == true && location == "London").Cast<MyObject>().excepted = true;

Cast 知道我当前使用的是哪种对象,然后设置我的属性....这段代码显然根本不起作用,但我不知道我该怎么做以及是否可以可以这样做:(

谢谢

最佳答案

_users.FindAll(z => z.userName.StartWith("toto") == true && location == "London")
.ForEach(x=>x.excepted =true)

关于c# - 查找多个元素并根据结果设置属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20456707/

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