Google+ Tools
Make Google+ profile picture
Make Google plus banners for profile
Create and share your Google Plus profile banners.

Profile image for mrk studios Udo Nesshoever on August 3, 2010
Removes duplicate items from a list
Language
C#
Tags

Remove duplicate items


public List<T> RemoveDuplicates<T>(List<T> list)
{
  return list != null ? new HashSet<T>(list).ToList() : null;
}

Comments

blog comments powered by Disqus