I have a list:
List<string> strlist=new List<string>();
strlist.add("UK");
strlist.add("US");
strlist.add("India");
strlist.add("Australia");
I want to change the index of some elements in the list:
The current index of "US" is 1, I want to replace it with 3 and for "Australia" it should be 1.