What is the most elegant way to find index of duplicate items in C# List
- by user326559
I've got a List 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{"fname", "lname", "home", "home", "company"}();
I need to get the indexes of "home".