时间:2021-05-20
使用表达式目录树实现两个不同类型的属性赋值:
public class People{public int Age { get; set; }public string Name { get; set; }public int Id;}public class PeopleCopy{public int Age { get; set; }public string Name { get; set; }public int Id;}public class Class1{private static Dictionary<string, object> _Dic = new Dictionary<string, object>();private static TOut TransExp<TIn, TOut>(TIn tIn) {string key = $"funckey_{typeof(TIn).FullName}_{typeof(TOut).FullName}";if (!_Dic.Keys.Contains(key)) { ParameterExpression parameterExpression = Expression.Parameter(typeof(TIn), "p");List<MemberBinding> memberBindingList = new List<MemberBinding>();foreach (var item in typeof(TOut).GetProperties()){PropertyInfo propertyInfo = typeof(TIn).GetProperty(item.Name);if (propertyInfo == null) { continue; }MemberExpression property = Expression.Property(parameterExpression, propertyInfo);memberBindingList.Add(Expression.Bind(item, property));}foreach (var item in typeof(TOut).GetFields()){FieldInfo fieldInfo = typeof(TIn).GetField(item.Name);if (fieldInfo == null) { continue; }MemberExpression property = Expression.Field(parameterExpression, fieldInfo);memberBindingList.Add(Expression.Bind(item, property));}Expression<Func<TIn, TOut>> expression = Expression.Lambda<Func<TIn, TOut>>(Expression.MemberInit(Expression.New(typeof(TOut)), memberBindingList), new ParameterExpression[]{parameterExpression});Func<TIn, TOut> func = expression.Compile();_Dic.Add(key,func);}return ((Func < TIn, TOut > )_Dic[key])(tIn);}}static void Main(string[] args){List<ClassLibrary1.PeopleCopy> PeoleCopyList = new List<ClassLibrary1.PeopleCopy>();for (int i = 0; i < 5; i++){ClassLibrary1.People people = new ClassLibrary1.People() { Id = 5+1, Age = 25, Name = "aaa"+i };PeoleCopyList.Add(Class1.ToutGet<ClassLibrary1.People, ClassLibrary1.PeopleCopy>(people));}}以上这篇C# 表达式目录树的应用详解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
1、表达式目录树 表达式目录树,在C#中是Expression来定义的,它是一种语法树,或者说是一种数据结构。其主要用于存储需要计算、运算的一种结构,它只提供
1.什么是表达式目录树:简单的说是一种语法树,或者说是一种数据结构(Expression)2.用Lambda声明表达式目录树:Expressionexp=(n,
本文实例为大家分享了C语言实现对后缀表达式(逆波兰表达式)的求解代码,供大家参考,具体内容如下逆波兰表达式:逆波兰表达式又叫后缀表达式。它是由相应的语法树的后序
先给大家介绍下C#中的循环执行for循环在这一节练习中,我们向大家介绍一下C#中的另一种重要的循环语句,for循环。for(表达式1;表达式2;表达式3){循环
表达式树使用一种类似树的结构来表示代码,它的每个节点都是一个表达式,比如方法调用和xnumnum<5;通过API创建表达式树使用API创建表达式,需要使用Exp