An unhandled exception of type 'System.ExecutionEngineException'

  • Thread starter Thread starter Einar Værnes
  • Start date Start date
E

Einar Værnes

Hi

I'm new to C#, and have just started to make a aspx-program.

The program runs fine until i try to include a two-dimensional array:
int[,] myArray = new int[,] {{1,2}, {3,4}, {5,6}, {7,8}};
The code compiles with no problems, but the program crashes immediately with
the error message:

"An unhandled exception of type 'System.ExecutionEngineException' occurred
in mscorlib.dll"

Can someone tell me what the problem is?

Thanks

Einar Værnes
 
Einar Værnes said:
I'm new to C#, and have just started to make a aspx-program.

The program runs fine until i try to include a two-dimensional array:
int[,] myArray = new int[,] {{1,2}, {3,4}, {5,6}, {7,8}};
The code compiles with no problems, but the program crashes immediately with
the error message:

"An unhandled exception of type 'System.ExecutionEngineException' occurred
in mscorlib.dll"

That sounds very odd. Does this happen with a tiny program such as:

using System;

class Test
{
static void Main()
{
int[,] myArray = new int[,] {{1,2}, {3,4}, {5,6}, {7,8}};

foreach (int i in myArray)
{
Console.WriteLine (i);
}
}
}


(The above works on my box.)
 
Thanks for your answer.

The problem disappeared when I rebuilt the whole solution.





Regards

Einar



Einar Værnes said:
I'm new to C#, and have just started to make a aspx-program.

The program runs fine until i try to include a two-dimensional array:
int[,] myArray = new int[,] {{1,2}, {3,4}, {5,6}, {7,8}};
The code compiles with no problems, but the program crashes immediately with
the error message:

"An unhandled exception of type 'System.ExecutionEngineException' occurred
in mscorlib.dll"

That sounds very odd. Does this happen with a tiny program such as:

using System;

class Test
{
static void Main()
{
int[,] myArray = new int[,] {{1,2}, {3,4}, {5,6}, {7,8}};

foreach (int i in myArray)
{
Console.WriteLine (i);
}
}
}


(The above works on my box.)
 
Back
Top