I have a stirng array of about 300 names. I need to sort them to put them in alphabetical order. I have been trying to use the bubble sort example, but comaring and replacing in a string array seems to choke.
My data is in the format: lastname, Spouse1 & Spouse2
Do the "," and "&" pose problems to a string array ?
Does the "immutable" factor apply to string arrays ?
I also recommend you to use a List instead of an array, though you will not be able to sort a "multi-dimension" list. Only a list of strings (or numbers).