Skip to content

Instantly share code, notes, and snippets.

@beachside-project
Created June 5, 2016 08:50
Show Gist options
  • Save beachside-project/1b20289479e4637b9dd2f158d9632aa8 to your computer and use it in GitHub Desktop.
Save beachside-project/1b20289479e4637b9dd2f158d9632aa8 to your computer and use it in GitHub Desktop.
public static class EnumerableExtension
{
public static HashSet<T> ToHashSet<T>(this IEnumerable<T> source) => new HashSet<T>(source);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment