我有一个循环,我的价值是
var val= (from entry in Data select (entry.Value)).ToList().First();
数据是Dictionary
我暂时使用的,val
是双精度类型的。所以我有
foreach(var v in val)
if(v > 100){
// here I wanna check if the difference between current and last value is greaterthan 10, to skip the setValue and exit the foreach loop.
a.setValue(v);
}
现在,如果当前和上一个之间的差异超过 10,我不想设置该值。
我应该创建一个列表还是什么?