gpt4 book ai didi

c# - C# 有什么可以与 Python 的列表推导相媲美的吗?

转载 作者:IT老高 更新时间:2023-10-28 20:50:59 26 4
gpt4 key购买 nike

我想在 C# 中生成一个列表。我缺少 python 的列表理解。有没有像 Python 中的列表推导或生成器表达式那样动态创建集合的 C# 方法?

最佳答案

如果您使用的是 C# 3.0 (VS2008),那么 LINQ to Objects 可以做非常相似的事情:

List<Foo> fooList = new List<Foo>();
IEnumerable<Foo> extract = from foo in fooList where foo.Bar > 10 select Foo.Name.ToUpper();

关于c# - C# 有什么可以与 Python 的列表推导相媲美的吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/323032/

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