Is it possible to create a Mixed Array in both C++ and C#
I mean an array that contains both chars and ints?
ex:
Array [][] = {{\'a\',1},{\'b
A classic array (the one with the brackets) can only have one type, which is part of its declaration (like int[] nums). There is no Array[].