gpt4 book ai didi

c# - 如何检查 bitArray 包含任何真值或任何假值?

转载 作者:太空狗 更新时间:2023-10-29 22:25:07 25 4
gpt4 key购买 nike

在 C# 和 Vb.net 中,是否可以通过循环迭代位数组来检查任何真值或假值 (Dotnet 2.0)?

最佳答案

我怀疑是否有任何方法可以在后台不使用循环(因为 BitArray 可以任意长,不像 BitVector32),但是如果您只是不不想自己写:

var hasAnyTrue = input.Cast<bool>().Contains(true);
var hasAnyFalse = input.Cast<bool>().Contains(false);

关于c# - 如何检查 bitArray 包含任何真值或任何假值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/969435/

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