heap

  1. L

    C# array memory allocation

    Why do arrays in c# have fixed size, if they are dynamicly allocated on the heap? Is it just because the reference for the array is allocated on the stack? Does this mean that c++ dynamic arrays are completely allocated on the heap, even their reference?
Back
Top Bottom