Removing Duplicates from a List in C#

For more details and detailed explaination of the code visit this link.

static List removeDuplicates(List inputList)
{
      Dictionary uniqueStore = new Dictionary();
      List finalList = new List();
      foreach (string currValue in inputList)
      {
          if (!uniqueStore.ContainsKey(currValue))
          {
              uniqueStore.Add(currValue, 0);
              finalList.Add(currValue);
          }
      }
      return finalList;
}
comments powered by Disqus