Click or drag to resize
ExtensionMethodsGetValueTKey, 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.3.0.0 (5.3.0)
Syntax
public static TValue GetValue<TKey, TValue>(
	this IDictionary<TKey, TValue> dictionary,
	TKey key
)

Parameters

dictionary
Type: System.Collections.GenericIDictionaryTKey, 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 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