gpt4 book ai didi

c# - 如何检查 Hashtable 值是否全为 0?

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

这是我的代码:

Hashtable actualValues = new Hashtable();
actualValues.Add("Field1", Int32.Parse(field1.Value));
actualValues.Add("Field2", Int32.Parse(field2.Value));
actualValues.Add("Field3", Int32.Parse(field3.Value));

bool isAllZero = true;
foreach (int actualValue in actualValues)
{
if (actualValue > 1)
isAllZero = false;
}
if (isAllZero)
{

}

但我在第 6 行靠近 foreach 处收到此异常 System.InvalidCastException: Specified cast is not valid.

我哪里错了?

最佳答案

假设您可以使用 Linq

bool isAllZero = Hashtable.Cast<DictionaryEntry>().All(pair => (int)pair.Value == 0);

如果你替换 HashTableDictionary<string, int> , 就变成了

bool isAllZero = dictionary.All(pair => pair.Value == 0);

关于c# - 如何检查 Hashtable 值是否全为 0?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8896146/

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