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, just to get the index:
var oProp = something;
int theThingIActuallyAmInterestedIn = myList.IndexOf(myList.Single(i => i.Prop == oProp));