Click or drag to resize

selectSelectT, R0, R1 Method (IDictionaryT, R0, FuncR0, R1)

Namespace:  WhetStone.Looping
Assembly:  WhetStone (in WhetStone.dll) Version: 1.0.4.0 (1.0.0.0)
Syntax
C#
public static IDictionary<T, R1> Select<T, R0, R1>(
	this IDictionary<T, R0> this,
	Func<R0, R1> selector
)

Parameters

this
Type: System.Collections.GenericIDictionaryT, R0
The IDictionaryTKey, TValue to map.
selector
Type: SystemFuncR0, R1
The value selector.

Type Parameters

T
The key type.
R0
The original value type.
R1
The new value type.

Return Value

Type: IDictionaryT, R1
A read-only IDictionaryTKey, TValue with selector applied on this's values.

Usage Note

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