重大问题,求助!急,各位大虾帮帮忙!
我在网页代码中写了个for循环,其中用到该句代码int[] the= (int[])dlcs.FCFS_P1(0, arrNum, 10, out sum);dlcs.FCFS_P1是我写的一个DLL中的函数,返回一个int的数组,现在的问题是当第二次执行该句时,出现错误:值超出范围;后来我又在for循环的结尾将数组the赋为NULL,可还是出问题,请问该怎么解决?使用的是C#
for (int tt = 0; tt < num; tt++)
{
int[] arrNum = new int[10];
GetRam(10, 200, 0, ref arrNum);
int[] the= (int[])dlcs.FCFS_P1(0, arrNum, 10, out sum);//第二次执行时报错
....(太长省略)
....
strtmp = Pstrin;
the = null;
}
[[italic] 本帖最后由 nemozhang 于 2007-12-17 22:11 编辑 [/italic]]