Can linq somehow be used to find the index of a value in an array?
For instance, this loop locates the key index within an array.
for (int i = 0; i < words.Length; i++)
{
if (words[i].IsKey)
{
keyIndex = i;
}
}
|
That actually gets you the integer index and not the object, regardless of what custom class you have created |
|||||||||||||||||
|
|
The accepted answer is quiet inefficient, since it ends up creating a new If
|
||||
|
|
|
If you want to find the word you can use
This gives you the first item for which IsKey is true (if there might be non you might want to use To get both the item and the index you can use
|
|||||||||||
|
|
Try this...
|
|||||
|
|
Just posted my implementation of IndexWhere() extension method (with unit tests): http://snipplr.com/view/53625/linq-index-of-item--indexwhere/ Example usage:
|
|||
|
|
|||
|
|