Hope someone can help me. I am using c# and I am somewhat new to it. I am loading a text file into my app and splitting the data on \",\" I am reading part of string into a
If you are targeting .NET 3.5, use the Distinct extension method:
var deduplicated = list.Distinct();