次の方法で共有


DictionaryExtensions.AddRange<TKey,TValue> メソッド

定義

1 つの辞書コンテンツを別の辞書に追加する

public static void AddRange<TKey,TValue> (this System.Collections.Generic.IDictionary<TKey,TValue> target, System.Collections.Generic.IDictionary<TKey,TValue> source, bool forceUpdate = true);
static member AddRange : System.Collections.Generic.IDictionary<'Key, 'Value> * System.Collections.Generic.IDictionary<'Key, 'Value> * bool -> unit
<Extension()>
Public Sub AddRange(Of TKey, TValue) (target As IDictionary(Of TKey, TValue), source As IDictionary(Of TKey, TValue), Optional forceUpdate As Boolean = true)

型パラメーター

TKey

ディクショナリ引数キーの型

TValue

ディクショナリ引数値の型

パラメーター

target
IDictionary<TKey,TValue>

target dictionary

source
IDictionary<TKey,TValue>

source dictionary

forceUpdate
Boolean

値を強制的に更新する必要があるかどうか

適用対象