2
I have a array two-dimensional dynamics with:
Dates of birth in the first dimension (column) and names in the second dimension:
Example:
Minhaarray(0,0) = "01/05/1990"
Minhaarray(1,0) = "Luisa Silva"
I’d like a method Sort that I could use the first column (date) as a parameter, but when it was moved bring the position of the second column together.
Does anyone have any idea?