• 技术文章 >后端开发 >C#.Net教程

    总结用表达式数调用的实例代码

    零下一度零下一度2017-06-23 16:17:24原创735
    照着 利用表达式树构建委托改善反射性能 做了一点小更改正好适合自己用

        public static class DynamicMethodBuilder
        {public static Delegate BuildDynamicDelegate(MethodInfo methodInfo, ConstructorInfo constructorInfo = null)
            {if (methodInfo == null)throw new ArgumentNullException("methodInfo");
                List<ParameterExpression> paramExpressions = methodInfo.GetParameters().Select((p, i) =>{var name = "param" + (i + 1);return Expression.Parameter(p.ParameterType, name);
                }).ToList();
                MethodCallExpression callExpression;if (methodInfo.IsStatic)
                {//Call(params....)callExpression = Expression.Call(methodInfo, paramExpressions);
                }else{if (constructorInfo != null)
                    {//Instance(params).Call(params....)List<ParameterExpression> constructorParamExpressions = constructorInfo.GetParameters().Select((p, i) =>{var name = "constparam" + (i + 1);return Expression.Parameter(p.ParameterType, name);
                        }).ToList();
                        callExpression = Expression.Call(Expression.New(constructorInfo, constructorParamExpressions), methodInfo, paramExpressions);
                        paramExpressions.InsertRange(0, constructorParamExpressions);
                    }else{
                        callExpression = Expression.Call(Expression.New(methodInfo.ReflectedType), methodInfo, paramExpressions);
                    }
                }return Expression.Lambda(callExpression, paramExpressions).Compile();
            } 
        }

    测试:

        public class Baby
        {
            private readonly DateTime _birthDay;
            public Baby(DateTime birthDay)
            {
                _birthDay = birthDay;
            }
            public Baby()
            {
                _birthDay = DateTime.Now;
            }
    
            public string GetBabyInfo(string name, int sex) => $"姓名:{name} , 出生天数:{ DateTime.Now- _birthDay} ,性别 :{(sex == 1 ? "男" : "女")}";
    
        }
    
        class Program
        {
            static void Main(string[] args)
            {
                Type targetType = Assembly.GetExecutingAssembly().GetType("ConsoleApplication1.Baby");
    
                MethodInfo methodInfo = targetType.GetMethod("GetBabyInfo", new[] { typeof(string), typeof(int) });
                ConstructorInfo constructor = targetType.GetConstructor(new[] { typeof(DateTime) });
    
                WithConstructor(methodInfo, constructor);
                WithOutConstructor(methodInfo);
                Console.ReadKey();
            }
            static void WithConstructor(MethodInfo methodInfo, ConstructorInfo constructor)
            {
                var func = (Func<DateTime, string, int, string>)DynamicMethodBuilder.BuildDynamicDelegate(methodInfo, constructor);
                Console.WriteLine(func(DateTime.Now.AddDays(-100), "糖墩儿", 1));
            }
            static void WithOutConstructor(MethodInfo methodInfo)
            {
                var func = (Func<string, int, string>)DynamicMethodBuilder.BuildDynamicDelegate(methodInfo);
                Console.WriteLine(func("糖墩儿", 1));
            }
        }

      

    以上就是总结用表达式数调用的实例代码的详细内容,更多请关注php中文网其它相关文章!

    声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。
    专题推荐:表达式 方法 调用 利用
    上一篇:关于Asp.Net Core MongoDB的实例代码 下一篇:关于.net C# Sql数据库SQLHelper类实例代码
    PHP编程就业班

    相关文章推荐

    • 一文聊聊C语言中的字符串操作(大小写转换、比较、排序等)• 分享一道逻辑面试题,看看你能答对吗!• C++设计模式浅识装饰模式• SUNWEN教程之----C#进阶(三)• SUNWEN教程之----C#进阶(五)

    全部评论我要评论

  • 取消发布评论发送
  • 1/1

    PHP中文网