Possible Duplicate:
(C#) Arrays, heap and stack and value types
I am trying to study some differences between memory allocation in c#
Let's suppose that I have this instruction:
int[] array = new int[512];
Does the "array" go to the Heap? Or does it reserve 512 integers on Stack?