I've got applicatipon based on c# where i can do some custom scripts and i need to REMOVE DUPLICATES from one list
but
I can't use LINQ (and it's Distinct() method - cause Net Framework of app is < 3.5) cause application doesn't recognize it and also it doesn't recognize HashSet method so am a bit confused with it, any ideas ?
this is list of strings, for example:
List<string> withDuplicates= new List<string>(new string[] { "A", "A", "B", "C", "C"});