Func<ResultExecutedContext> thunk = filters.Reverse().Aggregate(continuation,<BR> (next, filter) <FONT color=#ff0000>=> () =></FONT> InvokeActionResultFilter(filter, preContext, next));</P> <P>紅色這部分是什么意思呢。
2 回答

楊__羊羊
TA貢獻1943條經(jīng)驗 獲得超7個贊
next, filter給一個委托A,這個委托A是內(nèi)容是這樣的 () => InvokeActionResultFilter(filter, preContext, next) 即這個委托A又調(diào)用了另一個委托B,委托B是沒有參數(shù)的

慕田峪9158850
TA貢獻1794條經(jīng)驗 獲得超7個贊
(next, filter) => () => InvokeActionResultFilter(filter, preContext, next)) = ( ( next, filter ) => ( () => InvokeActionResultFilter(filter, preContext, next) ) )
- 2 回答
- 0 關(guān)注
- 672 瀏覽
添加回答
舉報
0/150
提交
取消