作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我知道您可以将 Any、Exists 和 Single 与 LINQ 一起使用,但无法完全实现。我需要根据 id 进行查找以查看它是否在数组中,并确保该值只有一个匹配项。因为如果有 2 个它会导致问题..我要检查的要求是数组中的每个 ID 只有一个且只有一个。
这是我尝试过的
if(someIntArray.Single(item => item = 3)
//... we found the value 8 in the array only once so now we can be confident and do something
最佳答案
下面是我将如何解决这个问题:
if (someIntArray.Count(item => item == 3) == 1)
{
//only one '3' found in the array
...
}
关于c# - 确定一个 int 值是否在数组中存在一次,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14270854/
我有 json 数据: { "products": [ { "productId" : 0, "productImg" : "../img/product-ph
我是一名优秀的程序员,十分优秀!