12 lines
293 B
C#
12 lines
293 B
C#
using System.Collections.Generic;
|
|
|
|
namespace YoutubeDownloader.Core.Utils.Extensions;
|
|
|
|
internal static class CollectionExtensions
|
|
{
|
|
public static void AddRange<T>(this ICollection<T> source, IEnumerable<T> items)
|
|
{
|
|
foreach (var i in items)
|
|
source.Add(i);
|
|
}
|
|
} |