gpt4 book ai didi

c# - 二维 bool 数组,检查数组是否包含 false

转载 作者:太空狗 更新时间:2023-10-29 23:59:54 29 4
gpt4 key购买 nike

我在 C# 中使用二维 bool 数组。我在 dot net pearls 查找了 Array.Exists 函数但我无法让它工作,要么是因为我使用的是 bool 值,要么是因为它是一个二维数组。

bool[,] array = new bool[4, 4];

if (array.Contains(false)) {}; // This line is pseudo coded to show what I'm looking for

最佳答案

不知道这是否是正确的方法,但转换每个元素似乎都有效:

bool[,] a = new bool[4,4]
{
{true, true, true, true},
{true, true, false, true},
{true, true, true, true},
{true, true, true, true},
};

if(a.Cast<bool>().Contains(false))
{
Console.Write("Contains false");
}

关于c# - 二维 bool 数组,检查数组是否包含 false,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21792574/

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