共用方式為


ContextualSelector<T,R> 代理人

定義

關聯式選取器函式。

public delegate R ContextualSelector<in T,R>(IBotContext context, T item);
type ContextualSelector<'T, 'R> = delegate of IBotContext * 'T -> 'R
Public Delegate Function ContextualSelector(Of In T, R)(context As IBotContext, item As T) As R 

類型參數

T

傳遞至選取器的數值型別。

這是反變數的型別參數。 也就是說,您可以使用您指定的類型,或衍生程度較低的任何類型。 如需共變數與反變數的詳細資訊,請參閱泛型中的共變數與反變數
R

選取器傳回的類型。

參數

context
IBotContext

IBotContext 傳遞至選取器。

item
T

傳遞至選取器的值。

傳回值

R

選取器傳回的值。

適用於