AddRange extension enhancement (#771)
This commit is contained in:
@@ -4,14 +4,14 @@ namespace k8s.Util.Common
|
|||||||
{
|
{
|
||||||
public static void AddRange<T>(this HashSet<T> hashSet, ICollection<T> items)
|
public static void AddRange<T>(this HashSet<T> hashSet, ICollection<T> items)
|
||||||
{
|
{
|
||||||
if (items == null)
|
if (items == null || hashSet == null)
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach (var item in items)
|
foreach (var item in items)
|
||||||
{
|
{
|
||||||
hashSet?.Add(item);
|
hashSet.Add(item);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user