Skip to content

M_CodeJam_Collections_DictionaryExtensions_GetValueOrDefault__2_1

andrewvk edited this page Jun 23, 2016 · 10 revisions

DictionaryExtensions.GetValueOrDefault(TKey, TValue) Method (ConcurrentDictionary(TKey, TValue), TKey, Func(TKey, TValue))

Returns value associated with key, or value returned by defaultValueFactory if key does not exists in dictionary

Namespace: CodeJam.Collections
Assembly: CodeJam (in CodeJam.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#

public static TValue GetValueOrDefault<TKey, TValue>(
	this ConcurrentDictionary<TKey, TValue> dictionary,
	TKey key,
	Func<TKey, TValue> defaultValueFactory
)

VB

<ExtensionAttribute>
Public Shared Function GetValueOrDefault(Of TKey, TValue) ( 
	dictionary As ConcurrentDictionary(Of TKey, TValue),
	key As TKey,
	defaultValueFactory As Func(Of TKey, TValue)
) As TValue

F#

[<ExtensionAttribute>]
static member GetValueOrDefault : 
        dictionary : ConcurrentDictionary<'TKey, 'TValue> * 
        key : 'TKey * 
        defaultValueFactory : Func<'TKey, 'TValue> -> 'TValue 

Parameters

 

dictionary
Type: System.Collections.Concurrent.ConcurrentDictionary(TKey, TValue)
The dictionary.
key
Type: TKey
The key.
defaultValueFactory
Type: System.Func(TKey, TValue)
Function to return default value.

Type Parameters

 

TKey
The type of the key.
TValue
The type of the value.

Return Value

Type: TValue
Value, associated with the key, or value returned by defaultValueFactory if key does not exists in dictionary

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type ConcurrentDictionary(TKey, 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

Reference

DictionaryExtensions Class
GetValueOrDefault Overload
CodeJam.Collections Namespace

Clone this wiki locally