摘要: Expression<Func<int, bool>>是表达式, <Func<int, bool>是委派(delegate) Expression编译后就会变成delegate,才能运行。 比如 Expression<Func<int, bool>> ex = x=>x < 100; x=>x < 100 ---> x是输入参数 int类型,x<100是函数体,返回bool类型 Func<int,... 阅读全文
posted @ 2011-03-25 10:28 IamV 阅读(1318) 评论(0) 推荐(0) 编辑