Click or drag to resize

ExtensionMethods.GetValue<TKey, TValue> Method

Gets the value for the key from the dictionary specified, or null / default(TValue) if key not found or the key is null.

Namespace:  SD.LLBLGen.Pro.ORMSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.4.0.0 (5.4.0)
Syntax
public static TValue GetValue<TKey, TValue>(
	this IDictionary<TKey, TValue> dictionary,
	TKey key
)

Parameters

dictionary
Type: System.Collections.Generic.IDictionary<TKey, TValue>
The dictionary.
key
Type: TKey
The key.

Type Parameters

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

Return Value

Type: TValue
the value for the key from the dictionary specified, or null / default(TValue) if key not found or the key is null.

Usage Note

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