根据这个线程优雅地确定是否有多个布尔值是“真”
使用这部分代码...
public bool ExceedsThreshold(int threshold, IEnumerable<bool> bools)
{
int trueCnt = 0;
foreach(bool b in bools)
if (b && (++trueCnt > threshold))
***//here i need to know which of b is the true***
return true;
return false;
}
我想知道哪个 bools 变量是真的?