What is the most elegant way to find index of duplicate items in C# List
问题 I've got a List<string> that contains duplicates and I need to find the indexes of each. What is the most elegant, efficient way other than looping through all the items. I'm on .NET 4.0 so LINQ is an option. I've done tons of searching and connect find anything. Sample data: var data = new List<string>{"fname", "lname", "home", "home", "company"}(); I need to get the indexes of "home". 回答1: You can create an object from each item containing it's index, then group on the value and filter out