gpt4 book ai didi

c# - 在 C# 中使用 linq

转载 作者:行者123 更新时间:2023-11-30 19:05:22 25 4
gpt4 key购买 nike

我以前从未使用过 linq,但想开始在我的代码中使用它。

我有 2 个字符串数组。

 string[] allFruits = allFruitTextHiddenBox.Text.Value.Trim('|').Split('|');
string[] healthyFruits = GetHealthyFruits().Trim('|').Split('|');

// now I need to get rotten fruits which are ones allfruit - healthyfruits

// I need string[] rottenFruits please

只是不确定如何使用 linq 来完成。

最佳答案

您可以使用 Enumerable.Except产生集合差异:

var rotten = allFruits.Except(healthyFruits);

如果您再次需要数组,请使用 ToArray

关于c# - 在 C# 中使用 linq,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22401743/

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