Click or drag to resize
IEnumerableExtensionMethodsToHashSetTDestination Method
Creates a new hashset and adds the source to it.

Namespace:  SD.Tools.BCLExtensions.CollectionsRelated
Assembly:  SD.Tools.BCLExtensions (in SD.Tools.BCLExtensions.dll) Version: 1.1.1
Syntax
public static HashSet<TDestination> ToHashSet<TDestination>(
	this IEnumerable<TDestination> source
)

Parameters

source
Type: System.Collections.GenericIEnumerableTDestination
The source.

Type Parameters

TDestination
The type of the destination.

Return Value

Type: HashSetTDestination
Hashset with all the unique values in source

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerableTDestination. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also