Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Extension method: void AddRange<T>(this HashSet<T>, IEnumerable<T>)

Declaration

public static void AddRange<T>(
    this HashSet<T> set,
    IEnumerable<T> values
)

Summary

Adds several values into a HashSet<T>.

Generic type parameters

T Type of the elements in the hash set.

Parameters

this HashSet<T>set The set to add the items to.
IEnumerable<T>values Values to add.