私がdebianでmono2.10.8.1を使用して以下のコードをコンパイルする場合、それを実行するとデバッグSystem.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;
}
}
}
}