gpt4 book ai didi

c# - 选择数组 C# 的替代项

转载 作者:太空宇宙 更新时间:2023-11-03 17:08:54 24 4
gpt4 key购买 nike

我有一个数组 statsname 作为

apple
X
banana
Y
Kiwi
z

我需要将苹果、香蕉和奇异果放入 Fruits 数组中,并将 X、Y 和 Z 放入称为字母表的数组中。

请问有任何简单的 C# 机制吗?

最佳答案

使用 IEnumerable<T>.Where 提供索引的重载。

var fruits = statsname.Where((s, i) => i % 2 == 0).ToArray();
var alphabets = statsname.Where((s, i) => i % 2 != 0).ToArray();

关于c# - 选择数组 C# 的替代项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20141241/

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