I have a collection of integer values. What would be the best way to sort them in ascending order?
The problem is I can't just assign a collection element the value of another element, i.e. this isn't allowed:
col.item(i) = col.item(j)
I'm sure it has a straightforward way to deal with but I don't seem to be tuned in to the right wavelength.




Reply With Quote