how to get the index of an element in a list in unity 5
Code Example - how to get the index of an element in a list in unity 5
list.indexOf(value);
unity list get item at index
// get item from a list using index
var selectedItem = myList[0];