|
CollectionExtensionsGetOrAddTKey, TValue(IDictionaryTKey, TValue, TKey, TValue) Method
|
Namespace: GSF.CollectionsAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.205-beta+5ef4169f3b1079d8b163dd363614f656bd140924
Syntax public static TValue GetOrAdd<TKey, TValue>(
this IDictionary<TKey, TValue> dictionary,
TKey key,
TValue value
)
<ExtensionAttribute>
Public Shared Function GetOrAdd(Of TKey, TValue) (
dictionary As IDictionary(Of TKey, TValue),
key As TKey,
value As TValue
) As TValue
public:
[ExtensionAttribute]
generic<typename TKey, typename TValue>
static TValue GetOrAdd(
IDictionary<TKey, TValue>^ dictionary,
TKey key,
TValue value
)
JavaScript does not support generic types or methods.
View SourceParameters
- dictionary IDictionaryTKey, TValue
- The dictionary to add the key/value pair to if the key does not already exist.
- key TKey
- The key to be added to the dictionary if it does not already exist.
- value TValue
- The value to assign to the key if the key does not already exist.
Type Parameters
- TKey
- The type of the keys in the dictionary.
- TValue
- The type of the values in the dictionary.
Return Value
TValueThe value of the key in the dictionary.
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