I have filled a List like below wich some strings. I wonder if the List has any property where you in an easy way can remove duplicates. Else I wonder how this can be done ?
List<String> GetData = new List<String>();
GetData.Add("one");
GetData.Add("two");
GetData.Add("one");
GetData.Add("three");