ArrayList class in C# – Free C# Tutorials
In this blog we will see what is variable sized array (or) jagged array and we will discuss in detail about Array class and ArrayList class. c# creates multidimensional arrays as arrays of arrays.We can also declare two-dimensional in the following way: int [][] x = new int [3][]; // three row array x[0] = …