当我在 debian 上使用 mono 2.10.8.1 来编译下面的代码时,运行它会给出一个 whileSystem.IndexOutOfRangeException
在调试模式下编译它不会,而且它不应该给出任何错误。这是一个已知的错误?
using System;
namespace CompilerBug
{
public class NotMain
{
public static void Main (string[] a)
{
bool[,] test = new bool[201,201];
int x,y;
for(x=-100;x<100;x++) for(y=-100;y<100;y++){
test[x+100,y+100] = true;
}
}
}
}