- Google+ Tools
-
Make Google+ profile picture
Make Google plus banners for profile
Create and share your Google Plus profile banners.
- Removes duplicate items from a list
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