My background is C++ and I\'m currently about to start developing in C# so am doing some research. However, in the process I came across something that raised a question abo
The meaning in this guide was simply that in C# an array is an object (perhaps like in STL that we can use in C++), while in C++ an array is basically a sequence of variables located & allocated one after the other, and that's why we can refer to them using a pointer (pointer++ will give us the next one etc.).