So if you have a Func or Action (or any of their cousins with more type parameters) then you can assign a lambda expression to them rather than needing to instantiate a delegate or have a separate method for the deferred processing://creates a Func that can be called laterFunc<int,bool> f = i => i <= 10;//calls the function with 12 substituted as the parameterbool ret = f(12); 这篇关于“="是什么意思?意思?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 10-28 04:47