的所有人。我需要在数据库中使用每三个序列栅格的并集,所以我使用ILogicalOp.BooleanAnd
。奇怪的是,我在{"Exception from HRESULT: 0x80041098"}
循环的第三次收到for
。
以下是我的代码的一部分:temp=…
上的错误显示在i==2
的以下行中。
ILogicalOp RMath;
for (int i = 0; i < inputRas.Length-2; i=i+1)
{
temp = RMath.BooleanAnd(inputRas[i], inputRas[i+1]);
rasOut = RMath.BooleanAnd(temp, inputRas[i + 2]);
}
任何评论都将不胜感激。