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
In C# and C++ it's not possible to create an array of mixed types. You should use other classes like std::vector in C++ or Dictionary in C#.