gpt4 book ai didi

c# - 检查一行 C# 中的数组元素是否不为空

转载 作者:行者123 更新时间:2023-12-04 22:39:25 25 4
gpt4 key购买 nike

我得到了一个 neighbor 数组(由 Tile 对象组成),它的长度始终为 4,无论是否填充了所有元素。如果该元素/位置不为空,我想扫描该数组并更改 Tile 中包含的 PB 的颜色。我可以使用以下代码通过标准的 if neighbors[i] = null 检查来做到这一点:

for (int i = 0; i < Neighbors.Count(); i++)
{
if (Neighbors[i] != null)
Neighbors[i].TilePB.Backcolor = Color.Red;
else
continue; // just put that here for some more context.
}

但我想知道是否可以在一行中完成此操作,类似于使用 ?运算符(operator)。我试过使用三元运算符,但我不能使用一个 continue (我尝试过的三元语句: Neighbors[i] != null ? /* do something */ : continue ,为什么它不起作用的来源: Why break cannot be used with ternary operator? )。

是否有另一种方法来检查数组的元素是否为空,只使用一行(最好不使用 hack)?

最佳答案

您可以为此使用 linq:

foreach (var item in Neighbors.Where(n => n != null))
{
// do something
}

关于c# - 检查一行 C# 中的数组元素是否不为空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55640392/

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