How can I find the index of an item in a list without looping through it?
Currently this doesn\'t look very nice - searching through the list for the same item twice
If anyone wonders for the Array version, it goes like this:
Array
int i = Array.FindIndex(yourArray, x => x == itemYouWant);