using System.Collections.Generic; namespace BTCPayServer { public static class UtilitiesExtensions { public static void AddRange(this HashSet hashSet, IEnumerable items) { foreach (var item in items) { hashSet.Add(item); } } } }