Can you please tell me if it is possible to have a 2D array with two day types. I am new to C#.
For example: array[double][string]
I have radius of flowers alone with their name as follows:
4.7,Iris-setosa
4.6,Iris-setosa
7,Iris-versicolor
6.4,Iris-versicolor
6.9,Iris-versicolor
5.5,Iris-versicolor
6.5,Iris-versicolor
6.3,Iris-virginica
5.8,Iris-virginica
I would like to put these in to a 2D array and sort it according to the first double
index. Please let me know if this is possible with an example.