C# 反射 循环属性、字段赋值
2021-03-05 16:28
标签:dem source runtime tar rdo 方法 http 集合 stat 根据官方说法, ReflectionDemo C# 反射 循环属性、字段赋值 标签:dem source runtime tar rdo 方法 http 集合 stat 原文地址:https://www.cnblogs.com/Lulus/p/12886502.htmlprivate static void CopyValueToTarget
//测试
Fish fish = new Fish() { Name = "ccc", Weight = (decimal)9.7 };
Fish copyFish = new Fish();
CopyValueToTarget
GetRuntimeFields和GetFields
GetRuntimeFields是检索表示指定类型定义的所有字段的集合。
GetFields是返回当前 Type 的所有公共
字段。
GetRuntimeProperties和GetProperties、GetRuntimeEvents和GetEvents等方法可以类推。示例代码
下一篇:Windows上常用软件