What are the differences between a multidimensional array and an array of arrays in C#? Technology Community › Category: C# › What are the differences between a multidimensional array and an array of arrays in C#? 0 Vote Up Vote Down VietMX Staff asked 4 years ago Problem What are the differences between multidimensional arrays double[,] and array-of-arrays double[][] in C#? Array of arrays (jagged arrays) are faster than multi-dimensional arrays and can be used more effectively. Multidimensional arrays have nicer syntax.