I want an Array(not a list converted to an Array), to assign only 1 coordinate something like "A4" should be accessed like _excelCoordinate["A"][4], so I was thinking of a multidimensional array whith only one element(coordinate pair).
This is what I came up with:
private dynamic[,] _excelCoordinate;
_excelCoordinate = new[,] { { "" }, { 0 } };
But I get:
No best type found for implicitly-typed array
And maybe no extra class, for that data structure.
How should it look the correct way ?