ImmutableSortedDictionary<TKey,TValue>.Builder.AddRange 方法

定义

将值序列添加到不可变排序字典。

public:
 void AddRange(System::Collections::Generic::IEnumerable<System::Collections::Generic::KeyValuePair<TKey, TValue>> ^ items);
public void AddRange (System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>> items);
member this.AddRange : seq<System.Collections.Generic.KeyValuePair<'Key, 'Value>> -> unit
Public Sub AddRange (items As IEnumerable(Of KeyValuePair(Of TKey, TValue)))

参数

items
IEnumerable<KeyValuePair<TKey,TValue>>

要添加到字典中的项。

适用于