Can these 2 arrays talk to each other or do they need to be the same type i.e [,] can only talk to other [,] arrays.
Or if I had:
char [,] 2darray =new char [2,2];
Could it pass it's values to a method that had a 2d array like:
Shirts(char [][] sizes)
This is pseudo code used for example only im really just interested in knowing what the differences in this type of array call are if any and if they can talk to each other or not.