Get List element position in c# using LINQ March 22, 2023 by Tarik var list = new List<int> { 3, 1, 0, 5 }; int pos = list.IndexOf(list.Min()); // returns 2