I have a property on a class that is an ISet. I\'m trying to get the results of a linq query into that property, but can\'t figure out how to do so.
Basically, look
As @Joel stated, you can just pass your enumerable in. If you want to do an extension method, you can do:
public static HashSet ToHashSet(this IEnumerable items) { return new HashSet(items); }