mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-24 14:50:50 +01:00
18 lines
363 B
C#
18 lines
363 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace BTCPayServer
|
|||
|
{
|
|||
|
public static class UtilitiesExtensions
|
|||
|
{
|
|||
|
public static void AddRange<T>(this HashSet<T> hashSet, IEnumerable<T> items)
|
|||
|
{
|
|||
|
foreach (var item in items)
|
|||
|
{
|
|||
|
hashSet.Add(item);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|