 | HelperExtensionsAddRangeTKey, TValue Method (IDictionaryTKey, TValue, IDictionaryTKey, TValue) |
Namespace:
BionicCode.Utilities.Net.Standard.Extensions
Assembly:
BionicCode.Utilities.Net.Standard (in BionicCode.Utilities.Net.Standard.dll) Version: 1.0.2
Syntaxpublic static void AddRange<TKey, TValue>(
this IDictionary<TKey, TValue> thisCollection,
IDictionary<TKey, TValue> range
)
J# supports the use of generic APIs, but not the declaration of new ones.
JScript does not support generic types or methods.
JavaScript does not support generic types or methods.
STATIC METHOD AddRange<TKey, TValue>(
SELF thisCollection AS IDictionary<TKey, TValue>,
range AS IDictionary<TKey, TValue>
)
AS VOID
Parameters
- thisCollection
- Type: System.Collections.GenericIDictionaryTKey, TValue
The IDictionaryTKey, TValue to modify. - range
- Type: System.Collections.GenericIDictionaryTKey, TValue
The IDictionaryTKey, TValue to add.
Type Parameters
- TKey
- The type of the key.
- TValue
- The type of the value.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IDictionaryTKey,
TValue. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also