摘要: static void Main(string[] args) { var ints = new int[] { 1, 2, 3, 4, 5, 6, 7, 8, 9 }; ParameterExpression parameter = Expression.Parameter(typeof(Int32)); BinaryExpression condition = null; //要构造的表达式i==1||i==2||i==3..... for (int ... 阅读全文
posted @ 2012-02-03 18:09 green.4984 阅读(567) 评论(0) 推荐(1) 编辑