2

当我在 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;
            }
        }
    }
}
4

1 回答 1

2

显然不是已知的错误,因此将其报告给单声道。

链接到错误报告以供进一步参考:bugzilla.xamarin.com/...

于 2012-09-25T09:01:23.150 回答