In LINQ how will you find the index of the element using where() with Lambda Expressions? Technology Community › Category: LINQ › In LINQ how will you find the index of the element using where() with Lambda Expressions? 0 Vote Up Vote Down VietMX Staff asked 4 years ago In order to find the index of the element use the overloaded version of where() with the lambda expression: where(( i, ix ) => i == ix);