I have a project where I want to combine 2 different arrays and then be able to sort them with either the int or string values. This is what I have so far.
int [] myRatingList = { 5, 2, 4, 3, 1 };
String [] myTitleList = {"Top Gun" , "School Of Rock" , "Old School" , "Boondock Saints" , "Full Metal Jacket"};
I need to find a way to sort them alphabetically, then in order by rating.
Any suggestions?