public static void AddRange(this ConcurrentBag @this, IEnumerable toAdd) { foreach (var element in toAdd) { @this.Add(element); } }
本文共 211 字,大约阅读时间需要 1 分钟。
public static void AddRange(this ConcurrentBag @this, IEnumerable toAdd) { foreach (var element in toAdd) { @this.Add(element); } }
转载地址:http://ymmyo.baihongyu.com/