Get index of object in a list using Linq [duplicate] June 10, 2023 by Tarik You don’t need to use LINQ, you can use FindIndex of List<T>: int index = customers.FindIndex(c => c.ID == 150);